我有如下文字:
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.more
和this.something
profile.firstName
和Profile.Organisation
我尝试过弄弄
[^']\w+\.+\w+[^']
然后看着这个example。
但是我的正则表达式太生锈了,我无法快速上手。