Jump to content

reversing a string (sort of)


Recommended Posts

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

Link to comment
Share on other sites

  • Moderators

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 by Melba23
Typnig

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

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? :P

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 by FireFox
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...