0

「[1]-[2]-[3]、[4]-[5]、[6,7,8]、[9]」または「[Computers]-[Apple]-[Laptop」のような文字列があります],[Cables]-[Cables,Connectors],[Adapters]', パターンで一覧結果を取得したいのですが、パターンの出し方がわかりません。基本的にコンマは分割ですが、[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]
4

3 に答える 3

0

正規表現を使用しない回答は次のとおりです (何が起こっているのかを理解しやすくするために何か価値がある場合)。

  1. 代わりに "]、["
  2. 「@」で分割
于 2013-03-23T04:53:13.643 に答える