It looks to me as if there's a lot of unnecessary stuff in that regex
- Something like
(?:\$?) is the same as just \$?
- There's no need to "protect" the ".", "_", ",", or "+" characters in a square-bracket group
So what you really could have is:
/(?:^|\s|[.(+\-,])\$?\$((?:[0-9]+(?=[a-z])|(?![0-9.:_\-]))(?:[a-z0-9]|[_.\-:](?![._\-:]))*[a-z0-9]+)/i
As for putting it in a string, all you really have to worry about here are the backslashes. Those need to be doubled ("\"). The outer "/" characters would be dropped, and the trailing "i" modifier would be passed into the Pattern.compile() method.
/(?:^|[\s.(+,-])\$?\$((?:[0-9]+(?=[a-z])|(?![0-9.:_-]))(?:[a-z0-9]|[.:_-](?![.:_-]))*[a-z0-9]+)/i– Gumbo Nov 22 '10 at 18:06Pattern.quote()? – stillstanding Nov 22 '10 at 18:10(?:\$?)is unnecessary. – Gumbo Nov 22 '10 at 20:23