我有一个像 '[1]-[2]-[3],[4]-[5],[6,7,8],[9]' 或 '[Computers]-[Apple]-[Laptop] 这样的字符串],[Cables]-[Cables,Connectors],[Adapters]',我希望 Pattern 得到列表结果,但不知道如何找出模式。基本上逗号是拆分,但 [6,7,8] 本身也包含逗号。
the string: [1]-[2]-[3],[4]-[5],[6,7,8],[9]
the result:
[1]-[2]-[3]
[4]-[5]
[6,7,8]
[9]
or
the string: [Computers]-[Apple]-[Laptop],[Cables]-[Cables,Connectors],[Adapters]
the result:
[Computers]-[Apple]-[Laptop]
[Cables]-[Cables,Connectors]
[Adapters]