function exchangeWord()
{
var s="I will exchange the first and the second word, look!";
var reg=/(S+)(s+)(S+);
alert(s.replace(reg,"$3$2$1"));
}
function exchangeWord()
{
var s="I will exchange the first and the second word, look!";
var reg=/(S+)(s+)(S+);
alert(s.replace(reg,"$3$2$1"));
}