PCRE matching whole words in a string

后端 未结 2 779
野趣味
野趣味 2021-01-18 15:01

I\'m trying to run a regexp in php (preg_match_all) that matches certain whole words in a string, but problem is that it also matches words that contain only pa

2条回答
  •  猫巷女王i
    2021-01-18 15:44

    You don't want a character class with [], you just want to match the words:

    /testable|string/

提交回复
热议问题