| if statement wildcard
|
Romerz

msg:3853150 | 3:35 pm on Feb 19, 2009 (gmt 0) | Basically Im wondering how to go about using a wildcard in an if statement. Example being: function blah() { var something="thisisatopsecretmessage" if (something==*secret*) { document.write("Found Secret") } else { document.write("No Secret Found") } } I know this is no doubt very basic, but how would I go about changing the if so its basically 'If something has secret in it, do this, else, do that'.
|
spl13

msg:3853154 | 3:39 pm on Feb 19, 2009 (gmt 0) | You'll need to use Regular Expressions - [w3schools.com...]
|
Fotiman

msg:3853267 | 5:49 pm on Feb 19, 2009 (gmt 0) | Or, you could use the indexOf function. if (something.indexOf("secret") > -1)
|
| indexOf returns the location of the first occurance of the string "secret" within something. If it's not found, it returns -1.
|
|
|