次のような文字列があります:1|"value"|;
その文字列を分割し、|
をセパレータとして選択します。
私のコードは次のようになります。
String[] separated = line.split("|");
私が得るものは、1つのエントリとしてすべての文字を含む配列です:
separated[0] = ""
separated[1] = "1"
separated[2] = "|"
separated[3] = """
separated[4] = "v"
separated[5] = "a"
...
誰が理由を知っていますか?|
で文字列を分割できませんか?
|
は、RegExではOR
として扱われます。だからあなたはそれをエスケープする必要があります:
String[] separated = line.split("\\|");
_|
_は、正規表現で特別な意味を持つため、エスケープする必要があります。 split(..)
メソッドをご覧ください。
_String[] sep = line.split("\\|");
_
2番目の_\
_は_|
_をエスケープするために使用され、最初の_\
_は2番目の_\
_をエスケープするために使用されます:)。
split
メソッドのパラメーターは正規表現です。これは here と読むことができます。 |
は正規表現で特別な意味を持っているため、エスケープする必要があります。コードは次のようになります(他の人がすでに示しているように):
String[] separated = line.split("\\|");
これを試してください:String[] separated = line.split("\\|");
私の答えはより良いです。 "separated"のスペルを修正しました:)
また、これが機能する理由は何ですか? |
は、正規表現で「OR」を意味します。あなたはそれをエスケープする必要があります。
パイプをエスケープします。できます。
String.split("\\|");
パイプはORを意味する正規表現の特殊文字です
Pipeをエスケープする必要があるため、この方法では機能しません。最初。 (http://www.rgagnon.com/javadetails/Java-0438.html)にある次のサンプルコードに例を示します。
public class StringSplit {
public static void main(String args[]) throws Exception{
String testString = "Real|How|To";
// bad
System.out.println(Java.util.Arrays.toString(
testString.split("|")
));
// output : [, R, e, a, l, |, H, o, w, |, T, o]
// good
System.out.println(Java.util.Arrays.toString(
testString.split("\\|")
));
// output : [Real, How, To]
}
}
分割する前にパイプを「#」などの別の文字に置き換えることができます。これを試してください
String[] seperated = line.replace('|','#').split("#");
String.split()は正規表現を使用するため、「|」をエスケープする必要がありますlike .split( "\\ |");
Pattern.compile("|").splitAsStream(String you want to split).collect(Collectors.toList());
|正規表現ではORを意味するため、エスケープする必要があります。さらに、単一の「\」は、「\ |」を取得しますJava文字列に何もないことを意味します。そのため、「\」自体もエスケープする必要があり、「\ |」が生成されます。
がんばろう!
public class StringUtil {
private static final String HT = "\t";
private static final String CRLF = "\r\n";
// This class cannot be instantiated
private StringUtil() {
}
/**
* Split the string into an array of strings using one of the separator in
* 'sep'.
*
* @param s
* the string to tokenize
* @param sep
* a list of separator to use
*
* @return the array of tokens (an array of size 1 with the original string
* if no separator found)
*/
public static String[] split(final String s, final String sep) {
// convert a String s to an Array, the elements
// are delimited by sep
final Vector<Integer> tokenIndex = new Vector<Integer>(10);
final int len = s.length();
int i;
// Find all characters in string matching one of the separators in 'sep'
for (i = 0; i < len; i++)
if (sep.indexOf(s.charAt(i)) != -1)
tokenIndex.addElement(new Integer(i));
final int size = tokenIndex.size();
final String[] elements = new String[size + 1];
// No separators: return the string as the first element
if (size == 0)
elements[0] = s;
else {
// Init indexes
int start = 0;
int end = (tokenIndex.elementAt(0)).intValue();
// Get the first token
elements[0] = s.substring(start, end);
// Get the mid tokens
for (i = 1; i < size; i++) {
// update indexes
start = (tokenIndex.elementAt(i - 1)).intValue() + 1;
end = (tokenIndex.elementAt(i)).intValue();
elements[i] = s.substring(start, end);
}
// Get last token
start = (tokenIndex.elementAt(i - 1)).intValue() + 1;
elements[i] = (start < s.length()) ? s.substring(start) : "";
}
return elements;
}
}