LondonNDIB Posted January 4, 2015 Posted January 4, 2015 Admittedly, I'm a regeg idiot. It always managed to confuse me.If I have a string, $s = "abcdefg"And I want a space after ever letter, $s = "a b c d e f g"I need to do...?Thanks.
Moderators SmOke_N Posted January 4, 2015 Moderators Posted January 4, 2015 Global $gszVar = "abcdefg" Global $gsRER = StringRegExpReplace($gszVar, "(.)(?!$)", "$1 ") ConsoleWrite($gsRER & @CRLF) 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.
LondonNDIB Posted January 4, 2015 Author Posted January 4, 2015 Hey, I think I even understand that!Thanks!!
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