Link to home
Start Free TrialLog in
Avatar of Anjeneya Murthy
Anjeneya MurthyFlag for India

asked on

Want to know the meaning of ""/^\s+|\s+$/g" in xsl

Hi,
Can someone tell me what does the below string does? the first parameter to the replace function looks like its a regex but have no idea what it does.. can someone help me decipher it!!
This was found in a xsl file and in a function which performs the trimming of a given string.

I am very much keen to know the meaning of "/^\s+|\s+$/g"

Thanks in advance
function stringTrim(instring)
{
    var outstring = instring;
    return outstring.replace(/^\s+|\s+$/g,"");
}

Open in new window

Avatar of Usurpatirus
Usurpatirus
Flag of Russian Federation image

ASKER CERTIFIED SOLUTION
Avatar of Usurpatirus
Usurpatirus
Flag of Russian Federation image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial