ลอง:
public class Main {
public static void main(String[] args) {
String line = "foo,bar,c;qual=\"baz,blurb\",d;junk=\"quux,syzygy\"";
String[] tokens = line.split(",(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)", -1);
for(String t : tokens) {
System.out.println("> "+t);
}
}
}
เอาท์พุท:
> foo
> bar
> c;qual="baz,blurb"
> d;junk="quux,syzygy"
กล่าวอีกนัยหนึ่ง: แยกเครื่องหมายจุลภาคเฉพาะถ้าเครื่องหมายจุลภาคนั้นมีศูนย์หรือจำนวนเครื่องหมายอัญประกาศหน้าคู่
หรือเป็นมิตรกับตามากขึ้น:
public class Main {
public static void main(String[] args) {
String line = "foo,bar,c;qual=\"baz,blurb\",d;junk=\"quux,syzygy\"";
String otherThanQuote = " [^\"] ";
String quotedString = String.format(" \" %s* \" ", otherThanQuote);
String regex = String.format("(?x) "+ // enable comments, ignore white spaces
", "+ // match a comma
"(?= "+ // start positive look ahead
" (?: "+ // start non-capturing group 1
" %s* "+ // match 'otherThanQuote' zero or more times
" %s "+ // match 'quotedString'
" )* "+ // end group 1 and repeat it zero or more times
" %s* "+ // match 'otherThanQuote'
" $ "+ // match the end of the string
") ", // stop positive look ahead
otherThanQuote, quotedString, otherThanQuote);
String[] tokens = line.split(regex, -1);
for(String t : tokens) {
System.out.println("> "+t);
}
}
}
ซึ่งสร้างเช่นเดียวกับตัวอย่างแรก
แก้ไข
ตามที่กล่าวถึงโดย @MikeFHay ในความคิดเห็น:
ฉันชอบใช้ตัวแยกของ Guavaเนื่องจากมีค่าเริ่มต้น saner (ดูการสนทนาข้างต้นเกี่ยวกับการจับคู่ที่ว่างเปล่าที่ถูกตัดแต่งโดยString#split()
ดังนั้นฉันจึง:
Splitter.on(Pattern.compile(",(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)"))
String line = "equals: =,\"quote: \"\"\",\"comma: ,\""
คุณต้องทำคือถอดแถบคำพูดภายนอกที่ไม่เกี่ยวข้อง ตัวละคร