Topic: Explanation about Javascript string contains

This is the explanation with example about javascript string contains

Re: Explanation about Javascript string contains

I have gone through the link and its really very much helpful information on javascript strings.

Thanks for the information. Appreciated a lot.

Re: Explanation about Javascript string contains

String Length

var txt="Hello World!";
document.write(txt.length);

var txt="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
document.write(txt.length);



Matching Content

var str="Hello world!";
document.write(str.match("world") + "<br>");
document.write(str.match("World") + "<br>");
document.write(str.match("world!"));

Semaphore Software Joomla Development Blog