如何在Java中根据固定字符序列分割字符串?
String类的**split()**方法接受一个分隔符(字符串形式),根据分隔符将当前字符串分割成更小的字符串,并将结果字符串作为数组返回。如果字符串不包含指定的分隔符,则此方法返回只包含当前字符串的数组。
例如,如果您将单个空格“ ”作为分隔符传递给此方法并尝试分割一个字符串,则此方法将两个空格之间的单词视为一个标记,并返回当前字符串中单词(空格之间)的数组。
如果字符串不包含指定的分隔符,则此方法返回一个包含整个字符串作为元素的数组。
根据固定字符序列分割字符串
每次出现特定字符串时,将字符串分割成字符串数组:
读取源字符串。
通过传递所需的字符串作为分隔符来调用**split()**方法。
打印结果数组。
示例
下面的Java程序将文件内容读取到一个字符串中,并使用split()方法和另一个字符串作为分隔符来分割它。
import java.io.File; import java.io.FileNotFoundException; import java.util.Arrays; import java.util.Scanner; public class SplitExample { public static void main(String args[]) throws FileNotFoundException { Scanner sc = new Scanner(new File("D:\sample.txt")); StringBuffer sb = new StringBuffer(); String input = new String(); while (sc.hasNextLine()) { input = sc.nextLine(); sb.append(input); } String source = sb.toString(); String result[] = source.split(" to "); System.out.print(Arrays.toString(result)); } }
输出
[Tutorials Point originated from the idea that there exists a class of readers who respond better, on-line content and prefer, learn new skills at their own pace from the comforts of their drawing rooms.]
广告