私は、次の形式の文字列を返す文字列でオーバーライドするメソッドを持っています:
"abc,cde,def,fgh"
文字列コンテンツを2つの部分に分割します。
最初のコンマの前の文字列
最初のコンマの後の文字列
私のオーバーライド方法は次のとおりです。
@Override
protected void onPostExecute(String addressText) {
placeTitle.setText(addressText);
}
では、文字列を2つの部分に分割して、2つの異なるTextView
にテキストを設定する方法を教えてください。
次のコードスニペットを使用できます
String str ="abc,cde,def,fgh";
String kept = str.substring( 0, str.indexOf(","));
String remainder = str.substring(str.indexOf(",")+1, str.length());
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
をチェックすることを忘れないでください。
以下はあなたが探しているものです:
public String[] split(",", 2)
これにより、2つの文字列配列が得られます。 Splitには 2つのバージョン があります
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
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()));
// 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 。
正規表現でsplitを使用します:
String splitted[] = addressText.split(",",2);
System.out.println(splitted[0]);
System.out.println(splitted[1]);
から _jse1.4
_String
-2つのsplit
メソッドが新しくなりました。 Stringが現在実装しているCharSequenceインターフェイスの要求に応じて、subSequenceメソッドが追加されました。 3つの追加メソッドが追加されました:matches
、replaceAll
、およびreplaceFirst
。
Java String.split(String regex, int limit)
with 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 );
}
_
Rhino/Nashornを使用してJVMでJavascriptを実行 "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", ""]
_
:この場合、 replaceAll を正規表現とともに使用してこの入力を取得できるため、次を使用できます:
System.out.println("test another :::"+test.replaceAll("(\\.*?),.*", "$1"));
キーがStringだけの場合、(\\D?),.*
System.out.println("test ::::"+test.replaceAll("(\\D?),.*", "$1"));
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;
}
この関数を作成しました。引数は入力文字列(String inp、here)およびinteger value(int n、here)です。これは、次を含む配列のサイズですコンマで区切られた文字列の値。他の特殊文字を使用して、その文字を含む文字列から値を抽出できます。この関数は、サイズnの整数の配列を返します。
使用するために、
String inp1="444,55";
int values[]=stringToInt(inp1,2);