标签: java regex split delimiter quotations
我无法在Java中正确解析输入文件。
输入文件:
Window "Radio Buttons" (300, 200)
我需要把它分成:
Window " Radio Buttons " ( 300 , 200 )
我目前正在使用line.split("\\s")给我:
line.split("\\s")
Window "Radio Button" (300, 200)
我只是不知道要使用的分隔符或正则表达式。