Trong Posted February 21, 2015 Posted February 21, 2015 (edited) Get string.name from http://string.name/ or http://string.name or https://string.name/ or //string.name or string.name/ With StringRegExp I tried to understand but I do and not work Edited February 22, 2015 by Trong Regards,
Moderators SmOke_N Posted February 21, 2015 Moderators Posted February 21, 2015 (edited) "(?i)(?:https?:)?//(.+?)(?:/|$)" Edited February 21, 2015 by SmOke_N removed smiley Trong 1 Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Trong Posted February 22, 2015 Author Posted February 22, 2015 "//([\w.]+)" StringRegExp is something very crazy. Too hard to understand. I'll must try harder. Regards,
kylomas Posted February 22, 2015 Posted February 22, 2015 @mikell - is that not the same as '//(.+)' ? Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
Trong Posted February 22, 2015 Author Posted February 22, 2015 @mikell - is that not the same as '//(.+)' ? Need Only string.name, not need string.name/something/etc.htm Regards,
mikell Posted February 22, 2015 Posted February 22, 2015 (edited) kylomas, [w.]+ matches word chars and dot (which doesn't need to be escaped in a character class) only, while .+ matches anything Edit BTW it could be done also like this "//([^/]+)" Edited February 22, 2015 by mikell Trong 1
kylomas Posted February 22, 2015 Posted February 22, 2015 @mikell - Thanks Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now