用 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!

更新于: 26-06-2020

291 次浏览

开启你的职业生涯

完成课程并获得认证

开始
广告