|
|
JavaScript search() Method
JavaScript String Object
Definition and Usage
The search() method searches for a match between a regular expression and a string.
This method returns the position of the match, or -1 if no match is found.
Syntax
Browser Support

The search() method is supported in all major browsers.
Examples
Example 1
Perform a case-sensitive search:
<script type="text/javascript">
var str="Visit W3Schools!";
document.write(str.search("W3SCHOOLS"));
</script>
|
The output of the code above will be:
Try it yourself »
|
Example 2
Perform a case-insensitive search:
<script type="text/javascript">
var str="Visit W3Schools!";
document.write(str.search(/w3schools/i));
</script>
|
The output of the code above will be:
Try it yourself »
|
JavaScript String Object
Over 6,000+ Amazing Designs. Just $59.95/year!
Download over 6,000+ Amazing Website Templates, Flash Templates, Office Templates, Brochures, Wordpress Themes, Corporate ID Kits, Vectors and More!
Signup now! Instant Account Activation
|
|
|
|