匹配字符串中的整个单词

时间:2014-05-22 09:50:13

标签: java regex

如果它包含像'and'或'contains'这样的整个单词,我必须验证xpath。 '和'或'包含'可以是任何情况(大写或小写),不会以任何字母为后缀或前缀,可以加上任何大括号或括号或空格作为前缀或后缀。

例如:

//view/section/headerRow[(col/label[contains(@value,'Role')]) and (col/label[contains(@value,'Demand')]) and (col/label[@value='Role Demand'])]


//view/pageToolbar[@secondaryTitle='[--Select--]' and @title='Plan:']

请您在Java中使用正则表达式提供一些快速解决方案吗?

1 个答案:

答案 0 :(得分:0)

这应该有效

boolean res = s.matches(".*\\bcontains\\b.*");

\ b - 字边界