| Author |
pattern search in java script.
|
Prem Shankar
Greenhorn
Joined: Jul 28, 2003
Posts: 21
|
|
function CheckAlphabetic(formElement) { value = formElement.value; var alphaPattern = /\d/; if (!alphaPattern.test(value)) { return(true); } else { return false; } } im using this function to check if a name has 'digits' in it. "alphapattern.test(value)" can be replaced by ".match(value)" also. Is there someothr method to do tht?? Also other than "match,test" wht are all the methods can var(alphapattern) use?
|
 |
Ron Newman
Ranch Hand
Joined: Jun 06, 2002
Posts: 1056
|
|
var alphaPattern = /\d/; that's not even going to compile.
|
Ron Newman - SCJP 1.2 (100%, 7 August 2002)
|
 |
Prem Shankar
Greenhorn
Joined: Jul 28, 2003
Posts: 21
|
|
|
but its working fine..and my app uses tht fn to check digits in names.
|
 |
 |
|
|
subject: pattern search in java script.
|
|
|