TTO Posted February 26, 2009 Posted February 26, 2009 i have some string like: 22334455 and i want to make it like: _22,_33,_44,_55 how would i go about doing this?
bo8ster Posted February 26, 2009 Posted February 26, 2009 are you looking to break up the string so you have _22, _33 or do you want the commas there? Either way look at _StringSplit in the help file. Post your code because code says more then your words can. SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y. Use Opt("MustDeclareVars", 1)[topic="84960"]Brett F's Learning To Script with AutoIt V3[/topic][topic="21048"]Valuater's AutoIt 1-2-3, Class... is now in Session[/topic]Contribution: [topic="87994"]Get SVN Rev Number[/topic], [topic="93527"]Control Handle under mouse[/topic], [topic="91966"]A Presentation using AutoIt[/topic], [topic="112756"]Log ConsoleWrite output in Scite[/topic]
Malkey Posted February 26, 2009 Posted February 26, 2009 i have some string like: 22334455 and i want to make it like: _22,_33,_44,_55 how would i go about doing this? This appears to work. Local $sStr = "22334455" Local $sRegExpRes = StringTrimRight(StringRegExpReplace($sStr, "(\d{2})+?", "_\1,"), 1) MsgBox(0, "", $sRegExpRes)
TTO Posted February 26, 2009 Author Posted February 26, 2009 Thanks malkey! had to change \d to \w so it works for both letters to!
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