将ruby字符串拆分为()和inside()

时间:2014-08-22 10:42:55

标签: ruby regex

我需要在ruby中分割字符串

我有字符串

'some text (text)'

我想将它拆分为()和内部()

喜欢这个'some text'文本谢谢

2 个答案:

答案 0 :(得分:0)

  (.*?)\((.*?)\)

参见demo.Catch这两组。

http://regex101.com/r/uR2aE4/1

答案 1 :(得分:-2)

您可以尝试使用表达式。return list

  (/[*(*)]/)

http://regexpal.com/

enter image description here