gpt4 book ai didi

android - 如何在android中拆分字符串

转载 作者:行者123 更新时间:2023-11-29 23:40:10 26 4
gpt4 key购买 nike

假设我有一个字符串,如下

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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com