w3resource

JavaScript search() Method: String Object

Description

The search() method is used to search for a match between a regular expression and a specified string. If a match is found, search() method returns the index of the regular expression inside the string, otherwise it returns -1.

Version

Implemented in JavaScript 1.2

Syntax

search(regexp) 

Parameter

regexp : Name of the regular expression.

Example:

The following web document demonstrates how the search() method can be used.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>JavaScript String object - search() method example</title>
</head>
<body>
<h1 style="color: red">JavaScript String object : search() method</h1>
<hr />
<script type="text/javascript">
//This is done to make the following JavaScript code compatible to XHTML. <![CDATA[
// Create a new RegExp object.
newRe = new RegExp('Fox','g')
// Define a string.
str1 = 'The Quick Brown Fox Jumps Over The Lazy Dog';
// Check whether regular expression exists in the string.
ans = str1.search(newRe);
if (ans == -1)
{
document.write("'Fox' is not found in "+str1);
}
else
{
document.write("'Fox' is found in "+str1);
}
//]]>
</script>
</body>
</html>

View the example in the browser

Supported Browser

Internet Explorer 7 Firefox 3.6 Google Chrome 7 Safari 5.0.1 Opera 10
Yes Yes Yes Yes Yes

See also:

JavaScript Core objects, methods, properties.

Previous: JavaScript replace() Method: String Object
Next: JavaScript slice() Method: String Object

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.