Could you help me to make RegExp? In large string I need to find these substrings(2 formats):
http://www.facebook.com/profile.php?id=100002234024152&ref=ffa\
http://www.facebook.com/alesya.yuldasheva?ref=ffa\
I tried these:
@"\\b(https?):\/\/www.facebook.com([.]{*})ref=ffa";
@"[{http:\/\/www.facebook.com}([.]{*}){ref=ffa}]";
@"[http:\/\/www.facebook.com]([.])*[ref=ffa]";
I use RegexKitLite, which syntax same as normal objective c regular expressions.
1 Answer