当前位置:  开发笔记 > 编程语言 > 正文

如何在固定字符序列上拆分字符串?

如何解决《如何在固定字符序列上拆分字符串?》经验,为你挑选了1个好方法。

假设我有以下字符串:

String asd = "this is test ass this is test"

我想用"屁股"字符序列拆分字符串.

我用了:

asd.split("ass");

它不起作用.我需要做什么?



1> Jon Skeet..:

它似乎对我很好:

public class Test
{
    public static void main(String[] args) {
        String asd = "this is test ass this is test";
        String[] bits = asd.split("ass");
        for (String bit : bits) {
            System.out.println("'" + bit + "'");
        }
    }
}

结果:

'this is test '
' this is test'

您真正的定界符可能不同吗?不要忘记split将其参数用作正则表达式...

推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有