我有一个使用String的覆盖方法,它返回String格式为:
"abc,cde,def,fgh"
我想将字符串内容分成两部分:
第一个逗号前的字符串和
第一个逗号后的字符串
我的首要方法是:
@Override
protected void onPostExecute(String addressText) {
placeTitle.setText(addressText);
}
现在我如何将字符串拆分为两部分,以便我可以使用它们将文本设置为两个不同的TextView
?
答案 0 :(得分:21)
您可以使用以下代码段 -
String str ="abc,cde,def,fgh";
String kept = str.substring( 0, str.indexOf(","));
String remainder = str.substring(str.indexOf(",")+1, str.length);
答案 1 :(得分:7)
String splitted[] =s.split(",",2); // will be matched 1 times.
splitted[0] //before the first comma. `abc`
splitted[1] //the whole String after the first comma. `cde,def,fgh`
如果您希望在第一个逗号后只有cde
作为字符串。
然后你可以使用
String splitted[] =s.split(",",3); // will be matched 2 times
或没有限制
String splitted[] =s.split(",");
不要忘记查看length
以避免ArrayIndexOutOfBound
。
答案 2 :(得分:3)
以下是您要搜索的内容:
public String[] split(",", 2)
这将给出2个字符串数组。拆分有two versions.您可以尝试的是
String str = "abc,def,ghi,jkl";
String [] twoStringArray= str.split(",", 2); //the main line
System.out.println("String befor comma = "+twoStringArray[0]);//abc
System.out.println("String after comma = "+twoStringArray[1]);//def,ghi,jkl
答案 3 :(得分:2)
String s =" abc,cde,def,fgh";
System.out.println("subString1="+ s.substring(0, s.indexOf(",")));
System.out.println("subString2="+ s.substring(s.indexOf(",") + 1, s.length()));
答案 4 :(得分:1)
// Note the use of limit to prevent it from splitting into more than 2 parts
String [] parts = s.split(",", 2);
// ...setText(parts[0]);
// ...setText(parts[1]);
有关详细信息,请参阅此documentation。
答案 5 :(得分:1)
使用split with regex:
combo.getSelectedItem()
答案 6 :(得分:0)
来自 jse1.4
String
- 两种split
方法是新的。根据String现在实现的CharSequence接口的要求,添加了subSequence方法。添加了三种其他方法:matches
,replaceAll
和replaceFirst
。
将Java String.split(String regex, int limit)
与Pattern.quote(String s)
例如,字符串“boo:and:foo”会产生以下结果:
Regex Limit Result : 2 { "boo", "and:foo" } : 5 { "boo", "and", "foo" } : -2 { "boo", "and", "foo" } o 5 { "b", "", ":and:f", "", "" } o -2 { "b", "", ":and:f", "", "" } o 0 { "b", "", ":and:f" }
String str = "abc?def,ghi?jkl,mno,pqr?stu,vwx?yz";
String quotedText = Pattern.quote( "?" );
// ? - \\? we have to escape sequence of some characters, to avoid use Pattern.quote( "?" );
String[] split = str.split(quotedText, 2); // ["abc", "def,ghi?jkl,mno,pqr?stu,vwx?yz"]
for (String string : split) {
System.out.println( string );
}
我在URL参数中遇到了同样的问题,为了解决它我需要根据第一个?
进行拆分。因此,转换字符串包含参数值,需要根据&
进行拆分。
String paramUrl = "https://www.google.co.in/search?q=encode+url&oq=encode+url";
String subURL = URLEncoder.encode( paramUrl, "UTF-8");
String myMainUrl = "http://example.com/index.html?url=" + subURL +"&name=chrome&version=56";
System.out.println("Main URL : "+ myMainUrl );
String decodeMainURL = URLDecoder.decode(myMainUrl, "UTF-8");
System.out.println("Main URL : "+ decodeMainURL );
String[] split = decodeMainURL.split(Pattern.quote( "?" ), 2);
String[] Parameters = split[1].split("&");
for (String param : Parameters) {
System.out.println( param );
}
Run Javascript on the JVM with Rhino/Nashorn«使用JavaScript的String.prototype.split
功能:
var str = "abc?def,ghi?jkl,mno,pqr?stu,vwx?yz";
var parts = str.split(',');
console.log( parts ); // (5) ["abc?def", "ghi?jkl", "mno", "pqr?stu", "vwx?yz"]
console.log( str.split('?') ); // (5) ["abc", "def,ghi", "jkl,mno,pqr", "stu,vwx", "yz"]
var twoparts = str.split(/,(.+)/);
console.log( parts ); // (3) ["abc?def", "ghi?jkl,mno,pqr?stu,vwx?yz", ""]
console.log( str.split(/\?(.+)/) ); // (3) ["abc", "def,ghi?jkl,mno,pqr?stu,vwx?yz", ""]
答案 7 :(得分:0)
:在这种情况下,您可以使用the Oracle tutorial和一些正则表达式来获取此输入,以便您可以使用:
System.out.println("test another :::"+test.replaceAll("(\\.*?),.*", "$1"));
如果密钥只是字符串,则可以使用(\\D?),.*
System.out.println("test ::::"+test.replaceAll("(\\D?),.*", "$1"));
答案 8 :(得分:0)
public static int[] **stringToInt**(String inp,int n)
{
**int a[]=new int[n];**
int i=0;
for(i=0;i<n;i++)
{
if(inp.indexOf(",")==-1)
{
a[i]=Integer.parseInt(inp);
break;
}
else
{
a[i]=Integer.parseInt(inp.substring(0, inp.indexOf(",")));
inp=inp.substring(inp.indexOf(",")+1,inp.length());
}
}
return a;
}
我创建了这个功能。参数为输入字符串 (字符串inp,此处)和整数值(int n,此处),它是包含以下内容的数组的大小字符串中的值,以逗号分隔。您可以使用其他特殊字符从包含该字符的字符串中提取值。此函数将返回大小为n的整数数组。
要使用,
String inp1="444,55";
int values[]=stringToInt(inp1,2);