我如何使用正则表达式来完成这个任务?
我想匹配这个字符串:-myString
但我不想匹配这个字符串中的-myString
: --myString
myString当然可以是任何东西。
这可能吗?
編輯:
这是我发布问题后迄今为止得到的更多信息:
string to match:
some random stuff here -string1, --string2, other stuff here
regex:
(-)([w])*
This regex returns me 3 matches:
-string1
, -
and -string2
理想情况下,我只希望它返回给我匹配-string1
的内容。