Trong Posted February 21, 2015 Share 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, Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted February 21, 2015 Moderators Share 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. Link to comment Share on other sites More sharing options...
Solution mikell Posted February 22, 2015 Solution Share Posted February 22, 2015 "//([\w.]+)" Trong 1 Link to comment Share on other sites More sharing options...
Trong Posted February 22, 2015 Author Share Posted February 22, 2015 "//([\w.]+)" StringRegExp is something very crazy. Too hard to understand. I'll must try harder. Regards, Link to comment Share on other sites More sharing options...
kylomas Posted February 22, 2015 Share 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 Link to comment Share on other sites More sharing options...
Trong Posted February 22, 2015 Author Share Posted February 22, 2015 @mikell - is that not the same as '//(.+)' ? Need Only string.name, not need string.name/something/etc.htm Regards, Link to comment Share on other sites More sharing options...
mikell Posted February 22, 2015 Share 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 Link to comment Share on other sites More sharing options...
kylomas Posted February 22, 2015 Share 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 Link to comment Share on other sites More sharing options...
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