If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
JavaScript में search() method , दी गयी value को String में search करता है। match होने पर उस value की position return करता है। search की जाने वाली value कोई भी String / SubString या regular expression हो सकता है।
string.search(search_value);
string | required : यह String variable है जिसमे हमें value को search करना है।
search_value | required : value जो String में search करनी है।
Return Value : value match होने पर उस value की position return केता है , और match न होने पर -1 return करता है।
File : js_string_search.html
<!DOCTYPE html>
<html>
<body>
<script>
let str = "Visit learnhindituts.com to learn PHP , JavaScript , jQuery etc.";
document.writeln(str.search("PHP"));
document.writeln("<br>");
/*these method searches value case sensitive*/
document.writeln(str.search('php'));
</script>
</body>
</html>
34 -1
Note : अगर search() method में कोई value pass नहीं करते हैं तो 0 return होता है। और अगर किसी Empty String में कुछ search करने पर -1 return होता है।