我是正则表达式的新手,非常感谢您的帮助。我正在尝试将一个表达式组合在一起,该表达式将使用所有未用单引号或双引号引起来的空格来拆分示例字符串。我的最后一次尝试看起来像这样:(?!")
并且效果不佳。它在报价前的空格处分开。
输入示例:
This is a string that "will be" highlighted when your 'regular expression' matches something.
所需的输出:
This
is
a
string
that
will be
highlighted
when
your
regular expression
matches
something.
注意"will be"
并'regular expression'
保留单词之间的空格。