美文网首页
Android String 字符串的分割(split)

Android String 字符串的分割(split)

作者: 一叶书生 | 来源:发表于2019-12-06 18:27 被阅读0次


    要注意的是,如果使用"."、"|"、"^"等字符做分隔符时,要写成s3.split("\\^")的格式,否则不能拆分。

    Java:分割字符串不能写成split(“$”)//$为要分割的字符

    Android:分割字符串需要加上中括号split(“[$]”)//$为要分割的字符

    String s ="Real.How.To";

    temp = s.split("\\.");

    String s ="Real|How|To";

    temp = s.split("\\|");

    相关文章

      网友评论

          本文标题:Android String 字符串的分割(split)

          本文链接:https://www.haomeiwen.com/subject/qrwegctx.html