Closed rshipp closed 6 years ago
CDATA[^h00ps://online\(.)americanexpress\(.)com/myca/.*?request_type=authreg_acctAccountSummary]]>
Should stop at the first character not in [\w-\[\]\(\)] when looking backwards. In this case the ^.
[\w-\[\]\(\)]
^
Even tighter, we can stop at the first character not in [\w] if it's before a ://.
[\w]
://
Should stop at the first character not in
[\w-\[\]\(\)]
when looking backwards. In this case the^
.Even tighter, we can stop at the first character not in
[\w]
if it's before a://
.