I have a few strings like these:
$str = 'this is a test 1';
$str = 'this is a test س';
$str = 'this is a test!';
$str = 'this is a test';
And I want this output:
false // there is this number: `1`
false // there is a Arabic character: س
false // there is a exclamation mark
true // that's pure English
As you see, I need to determine a string is pure-English or not. How can I do that?