PHPと正規表現を使用してすべてのデモワードを検索したいと思います。
$input ='demo';
$pattern = ''; //$input can be used along with regex, please help here
$text = 'This is dem*#o text, contains de12mo3 text, is .demo23* text'
if(preg_match($pattern, $text))
{
echo 'found';
}else{
echo'not found';
}
の検索ワードdemo
はtext
、次の形式で存在する可能性があります
1) may start with special characters/numbers Eg. "12*demo"
2) may contain special characters/numbers within the word Eg. "de12*mo"
3) may end with special characters/numbers Eg. "demo12*"
私が立ち往生しているのを手伝ってください、事前に感謝します!
ノート:The $input can be max. of 15 in length