AdamGJohnson Posted February 14, 2014 Posted February 14, 2014 Hi Guys, Need some help. I'm trying to write a script that will take a hex value and reverse the string two digits at a time, so F042EFCA will become CAEF42F0. So as you can see the string itself isn't reversed but the last two digits are now first, the second from last two digits are next etc. Can anyone recommend a way of doing this please? Thanks for yout time! Adam
Moderators Melba23 Posted February 14, 2014 Moderators Posted February 14, 2014 (edited) AdamgJohnson,Welcome to the AutoIt forum. This is the easiest way to do that:$sString = "F042EFCA" $sReversed = StringRegExpReplace($sString, "(.{2})(.{2})(.{2})(.{2})", "$4$3$2$1") MsgBox(0, "Reversed (sort of)", $sReversed)Basically we divide the string into 2 character bits and then recombine them in reverse order. M23 Edited February 14, 2014 by Melba23 Typnig FireFox 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Moderators Melba23 Posted February 14, 2014 Moderators Posted February 14, 2014 FireFox,Then we can do it like this: $sString = "F042EFCA" $aSplit = StringRegExp($sString, "(.{2})", 3) ; Get an array of the 2-char elements $sReversed = "" For $i = UBound($aSplit) - 1 To 0 Step -1 $sReversed &= $aSplit[$i] ; Recombine in the reverse order Next MsgBox(0, "Reversed (sort of)", $sReversed)Any more requests? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
FireFox Posted February 14, 2014 Posted February 14, 2014 (edited) Nope My try :Local $s = "F042EFCA" $s = StringReverse($s, 1) Local $sReversed = "" For $i = 1 To StringLen($s) Step 2 $sReversed &= StringReverse(StringMid($s, $i, 2), 1) Next MsgBox(0, "Reversed (sort of)", $sReversed)Should be efficient since the StringReverse function is now internal. Edited February 14, 2014 by FireFox
AdamGJohnson Posted February 14, 2014 Author Posted February 14, 2014 You guys are awesome! thanks so much
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