使用以下正则表达式:
\[(.*?)\]
解释:
\[
[
(.*?)
\]
]
简单的正则表达式问题。我有以下格式的字符串:
this is a [sample] string with [some] special words. [another one]
提取方括号内的单词的正则表达式是什么,即。
sample some another one
注意:在我的用例中,括号不能嵌套。