正则表达式不在单引号内时进行匹配

时间:2018-07-04 10:17:12

标签: c# regex

我有如下文字:

  • something.somethingelse equals 'a.value'
  • another.thing.more is 'hello@something.else.again' or this.something is 'abc.def'
  • substringof('xxxx', profile.firstName) and Profile.Organisation eq 'dd.d@ORG.name'

我正在寻找一种可以匹配包含点的单词的正则表达式,除非它们用单引号引起来。在这种情况下,它将是:

  • something.somethingelse
  • another.thing.morethis.something
  • profile.firstNameProfile.Organisation

我尝试过弄弄

[^']\w+\.+\w+[^']

然后看着这个example

但是我的正则表达式太生锈了,我无法快速上手。

0 个答案:

没有答案