摘要: String str = "aaa,bbb,ccc,ddd,";String[] strArray = str.split(",");System.out.println(strArray); 阅读全文
posted @ 2021-07-25 14:54 northli 阅读(366) 评论(0) 推荐(0)
摘要: 截取第二个 '.' 之前的所有字符。 select substring_index('www,sqlstudy,com,cn', ',', 2); 参考自 https://blog.csdn.net/mlks_2008/article/details/3983981?utm_medium=distr 阅读全文
posted @ 2021-07-25 12:08 northli 阅读(312) 评论(0) 推荐(0)