I have this php code
if(preg_match('/BUT[a-zA-Z0-9]+TN/', $id))
{
echo "Match found";
}
For $id as 'BUTEqHLHxJSRr9DJZSMTN' , its not working/matching.But I have tested the regex pattern online with the id and it worked.Please help me find the issue.
Thanks
if(preg_match('/BUT[a-zA-Z0-9]+TN/', $id))