robert_gsfame Posted April 22, 2010 Share Posted April 22, 2010 i want to validate text where user has to input at least one letter if in php we have if(!ereg('[a-z]',string)){echo "wrong input";} how bout in Javascript? Quote Link to comment https://forums.phpfreaks.com/topic/199361-ereg-in-javascript/ Share on other sites More sharing options...
grim1208 Posted April 22, 2010 Share Posted April 22, 2010 myString.match(/your_expression/) Quote Link to comment https://forums.phpfreaks.com/topic/199361-ereg-in-javascript/#findComment-1046310 Share on other sites More sharing options...
robert_gsfame Posted April 22, 2010 Author Share Posted April 22, 2010 what if i want to check if string contain a-z or A-Z?? Quote Link to comment https://forums.phpfreaks.com/topic/199361-ereg-in-javascript/#findComment-1046315 Share on other sites More sharing options...
grim1208 Posted April 22, 2010 Share Posted April 22, 2010 var exp = "/^[a-zA-z]$/"; var mystring = "Apple"; if(!(mystring.match(exp))) { return false; } else { return true; } code not tested Quote Link to comment https://forums.phpfreaks.com/topic/199361-ereg-in-javascript/#findComment-1046316 Share on other sites More sharing options...
salathe Posted April 22, 2010 Share Posted April 22, 2010 You can also do: var lettersOnly = /^[a-z]+$/i.test(subject); Quote Link to comment https://forums.phpfreaks.com/topic/199361-ereg-in-javascript/#findComment-1046337 Share on other sites More sharing options...
robert_gsfame Posted April 22, 2010 Author Share Posted April 22, 2010 Thx a lot for all helps!! Quote Link to comment https://forums.phpfreaks.com/topic/199361-ereg-in-javascript/#findComment-1046407 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.