I want obtain from string piece, except beginning and ending spaces ( function trim() in php) I want make this witch regexp, in php I make this, here my code
$str = " a s d ";
$mytrim = preg_match_all("#^\s*([^\s].*)\s*$#U", $str, $mas);
echo $mas[1][0];
but how to make this in javascript I dont know, (because in js regex, not: "all except asked symbols - [^some symbols]").
witch 2 expression, I can make "trim in js", but interest, how to make this, witch 1 regular expression?