用 Java 将字符串标记化
我们有下列字符串 -
String str = "This is demo text, and demo line!";
若要标记化字符串,让我们在每个句号 (.) 和逗号 (,) 后对其进行拆分
String str = "This is demo text, and demo line!";
下面是完整的示例。
示例
public class Demo { public static void main(String[] args) { String str = "This is demo text, and demo line!"; String[] res = str.split("[, .]", 0); for(String myStr: res) { System.out.println(myStr); } } }
输出
This is demo text and demo line!
广告