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.
我有一个使用 php 进行验证的 jquery-ajax 测验。 其中一个问题要求故事的三个主要人物,但考虑到他们可以输入 char1 char2 char3 char2 char1 char3等等。
char1 char2 char3
char2 char1 char3
如何检查用户字符串中是否包含 char1、char2 和 char3,无论它们的顺序如何?
正则表达式不是最好的,但你可以做类似的事情
$string = "something char1 char2 char3"; if ((strpos($string,"char1") !== false) && (strpos($string,"char2") !== false) && (strpos($string,"char3") !== false) ) { echo 'found'; }