Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将正则表达式(或 SQL)中的单词与空格匹配,例如,
This 将匹配
This
T h i s
T hi s
Th is
您可以\s*在每个字母之后使用,表示 0 个或多个空格。但是您可以使用 replace() 使用简单的解决方案...
\s*
WordThis.replace(' ','').equals("this")
你可以试试这样的表达方式(t\s*h\s*i\s*s\s*)。
(t\s*h\s*i\s*s\s*)
您需要确保您的设置不区分大小写。
\s*我想这是在 word 中的每个字符之间手动添加的唯一方法。