2
我是REGEX的新手,我只是想說「She」和「Shell」,而不是用這個程序(Groovy)。我一直在努力一段時間。REGEX(Groovy)如何使用REGEX =「她」選擇單詞「她」,「殼牌」?
saying = 'She wishes for Shells not ashes'
println saying
def pattern = ~/\bShe*\b/
def matcher = pattern.matcher(saying)
def count = matcher.getCount()
println "Matches = ${count}"
for (i in 0..<count) {
print matcher[i] + " "
}
輸出: 她希望貝殼不骨灰 匹配= 1 她
正則表達式並不像Windows CMD如DIR W *列出文件夾或文件開始W.我做了什麼工作錯誤?
當你回答這個問題