java: string 字符串的分割方法
2021-02-04 04:15
标签:code div 使用 ati stat oid sys 字符 int java: string 字符串的分割方法 标签:code div 使用 ati stat oid sys 字符 int 原文地址:https://www.cnblogs.com/pangbi/p/12797832.html 1 package com.company;
2 //split
3 //使用时,想要以什么符号分割,就在"(填写要分割的字符)";
4 //有一个特殊情况,在以"."分割时,需要写成"\\."
5 //因为单独"."的话,有特殊含义
6 public class StringFG {
7 public static void main(String[] args) {
8 String str1="aaa,bbb,ccc";
9 String[] array1= str1.split(",");
10 for(int i=0;i
文章标题:java: string 字符串的分割方法
文章链接:http://soscw.com/index.php/essay/50725.html