作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个字符串,如下
String myText="I'm a android developer and i'm developing an android app";
所以我想用 ("' "),
拆分上面的字符串,并想把它放在 textView 上,所以这怎么可能。我用过这段代码
split(Pattern.quote("'"));
所以我的完整代码是:
textUser.setText(User);
String[] newDesc=Description1.split(Pattern.quote("'"));
for(String w:newDesc){
textDesc.setText(w);
}
但这行不通。请解决我的问题
最佳答案
我相信 Pattern.quote()
包装了您的 RegExp,以便它仅在引号内的匹配字符串时才有效。
换句话说,我不相信在这种情况下它会起作用。
一个简单的 String[] newDesc=Description1.split("'");
应该可以工作。
关于android - 如何在android中拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51927428/
我是一名优秀的程序员,十分优秀!