It appears you want a left and right trimmed string, and a way of updating a status field for your user. These may be of interest to you:
<html>
<head>
<script>
//option 1: just determine if the string is valid
string_valid = function (str) {
validity_indicator = {
true:"Valid",
false:"InValid",
};
return validity_indicator[str.match( /\s*([^\s](:?.*[^\s])?)\s*/ ) != null];
};
// option 2: the trim and validation sort of wrapped up in one.
parse_for_validity = function (str) {
if ( ( result = /\s*([^\s](:?.*[^\s])?)\s*/.exec( str ) ) == null ) {
return 'Incorrect';
}
return result[ 1 ];
};
// then either
// errmsg.innerHTML = string_valid( your_string_here )
</script>
</head>
<body>
<!-- and then test them out -->
<script>
alert( string_valid(" ") ); // => 'Incorrect'
alert( string_valid(" abc ") ); // => 'Correct'
alert( parse_for_validity(" ") ); // => 'Incorrect'
alert( '...' + parse_for_validity(" abc ") + '...' ); // => '...abc...'
</script>
</body>
</html>
With respect to the /, I believe you only have to concern yourself with it when you are using it within your regular expression. Having / in the string you are testing against is fine. If you want to test for a / in your regular expression, you should be able to escape it like this \/, as in the following expression: /\//
I hope this helps. I love regex! :)