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..
|
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..
| |||
|
feedback
|
|
You can use str.search() It will return the position of match and -1 if not found | |||
|
feedback
|
|
equivalent of you can do :
| |||||
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. | |||
|
feedback
|
| |||
|
feedback
|
|
Use the If it returns -1, the string is not present Non-negative number means, string is present
| |||
|
feedback
|
|
For searching text inside a block element .
return the index of the text | |||
|
feedback
|