Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要aaa|aaa|aaa/bbb|bbb|bbb 分成aaa|aaa|aaa和bbb|bbb|bbb。
aaa|aaa|aaa/bbb|bbb|bbb
aaa|aaa|aaa
bbb|bbb|bbb
很简单,只是根据/.
/
但是不,我也可以有这种情况:
aaa|aa/a|aaa/bbb|bb/b|bbb
所以我需要使用该/字符进行拆分,但仅在该|字符出现 2 次之后。
|
有任何想法吗???
您是否使用任何特定的语言?这样的事情怎么样?
(.*\|.*\|.*)\/(.*)