对于 PMD,我希望有一个规则,警告我的那些丑陋的变量,以 my
开始。
这意味着我必须接受所有的变量,做 没有开始与 my
。
因此,我需要一个行为如下的 RegEx (re) :
re.match('myVar') == false
re.match('manager') == true
re.match('thisIsMyVar') == true
re.match('myOtherVar') == false
re.match('stuff') == true
我试过不同的方法,但还没有成功。