如何实现 String.split() 的正则表达式以用空格分隔值并忽略双引号文本?
就像下面的例子一样。
hello "Luis Anderson" your age is 30 and u will get $30
这个,字符串列表:
'hello', '"Luis Anderson"', 'your', 'age', 'is', '30', 'and', 'u', 'will', 'get', '$30'
问题是,当我使用 String.split() 时,它还考虑了“Luis Enderson”之间的短语并将其拆分为 2 个字符串。
如果您有任何其他不包括使用正则表达式的想法,请解释一下,谢谢。