I need to find a text from a paragraph using java script. Is there any code in JavaScript like we do in c# to find a text using "string.Contains("")" method.

Pls help...

Thanks Guys..

link|improve this question

25% accept rate
feedback

6 Answers

up vote 4 down vote accepted

You can use str.search()

It will return the position of match and -1 if not found

http://www.w3schools.com/jsref/jsref_search.asp

link|improve this answer
feedback

equivalent of string.Contains("") is indexOf (returns -1 if subString doesnt exist in a string).

you can do :

var myString = "foo";
var myParagraphText = $('#myParagraphId').text();

if(myParagraphText.indexOf(myString) != -1){
    //myParagraphText contains myString
} 
link|improve this answer
thanks for ur reply can you pls provide me a brief code. so that it is helpful to me. – Neon Feb 24 at 12:16
i edited my answer with an example – Mona Cheikhna Feb 24 at 12:22
feedback

you can use string.indexOf("text") method which will return index of the "text" in the "string", return -1 if the text not found in the string.

link|improve this answer
feedback
var n = $('p').text();
var regex = new RegExp('text to search for', "i");
if(regex.exec(n) != null) {
  // text found
} else {
  //text not found
}
link|improve this answer
feedback

Use the search() function

If it returns -1, the string is not present Non-negative number means, string is present

var str="hello there";
alert(str.search("there"));
link|improve this answer
feedback

For searching text inside a block element .

var str="your block"
str.search("text to find");


str.indexOf("text to find"); 

return the index of the text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.