试图匹配所有这些:
{_someWord1} ... $1=someWord, $2=1
{_another82} ... $1=another, $2=82 (item in question)
{_testX} ... $1=test, $2=X
我的正则表达式:{_(\w+)(\d+|X)}
匹配所有三个,但第二项的组是:
{_another82} ... $1=another8, $2=2
我希望能够有任意数量的数字 in $2
,并只保留单词 in $1
。我需要提前看一下吗?