Jump to content

[SOLVED] how to parse the words


shamsuljewel

Recommended Posts

oppppsssssss

that is so easy....

var mySplitResult = myString.split("&");
var results = new Array();
for(i = 0; i < mySplitResult.length; i++)
{
	results[i] = mySplitResult[i];
	//document.write("<br /> Element " + i + " = " + mySplitResult[i]); 
	document.write(results[i]+'<br>');
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.