I'm having trouble getting urls to match with
sregex rex = sregex::compile("(?:ftp|http|https)+://([\\S\^<\^>]+)", sregex::icase ); It matches all the urls but it also includes >> on the end of each match, which I'm trying to negate. What am I doing wrong?
[\\S\^<\^>]+to do?