Scripts posted recently tagged to expression in Kelpi

1- 1 of 1.

scape blanks javascript

to javascript scape regular expression by txus

function cleanBlanks(source){
	temp_string = source;
	source = (temp_string.replace(/^\W+/,'')).replace(/\W+$/,'');
	return source
}
hits counter