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.
如何才能做到这一点?
有一个这样的字符串数组:
如何在所有可能的位置找到输入字符串“ tax ”的所有字母?结果必须是:
认为使用 REGEXP 会很容易,但卡住了。有什么建议么?
txa|tax|axt|atx|xta|xat
在 Debuggex 上实时编辑
老实说,您可以在没有“硬编码”的情况下做到这一点。但是,正则表达式可能会比这更长,因为税收的排列并不多。
^(?=.*[t])(?=.*[x])(?=.*[a])[tax]{3}$
这是实际的非“硬编码”方式。