I need to extract URL from a text using jquery.
Lets say i have sowhere on the page following textarea code
The easiest thing to do is to use a regexp, like everyone has pointed to.
/url = \{([^}]*)\}/
That regexp should do it.