Jump to content

How do I swap "Last, First" to "First Last" name in array.


Recommended Posts

id say look at StringSplit(). here is how id do it:

For $i = 1 To UBound($array)
     $nString = StringSplit($array[$i], ", ")
     $array[$i] = $nString[1] & " " & $nString[0] ;if the syntax is wrong im sorry im at work right now and dont have the help file
Next
For $i = 1 To UBound($array)
     ConsoleWrite($array[$i] & @LF);this is just to check what the output is
Next
Edited by pieeater

[spoiler]My UDFs: Login UDF[/spoiler]

Link to comment
Share on other sites

#include <Array.au3>
 
Dim $array[3] = ["Smith, John", "Doe, Jim", "Man, Bat"]
 
_ArrayDisplay($array)
 
For $i = 0 To UBound($array) - 1
    $array[$i] = StringRegExpReplace($array[$i], "(.*),(.*)", "\2 \1")
Next
 
_ArrayDisplay($array)

Except you end up with two spaces between the names depending on how the original array is, but it's easily fixable

Edit2: No more extra spaces and whatnot...

#include <Array.au3>
Dim $array[3] = ["Smith, John  ", "Doe, Jim", "Man, Bat"]
_ArrayDisplay($array)
For $i = 0 To UBound($array) - 1
$array[$i] = StringStripWS(StringRegExpReplace($array[$i], "(.*),(.*)", "\2 \1"), 1 + 2 + 4)
Next
_ArrayDisplay($array)
Edited by MrMitchell
Link to comment
Share on other sites

Here's my take on it, using 1 and 2D arrays.

#include <array.au3>
; Example for 2D array
Global $NewArray[4][2], $NewArray1[4]
Global $Array[4][2] = [["Smith", "John"],["Jones", "Mary"],["Johnson", "Peter"],["Fitch", "Abercrombie"]]
_ArrayDisplay($Array, "$Array before reformatting")
For $I = 0 To UBound($Array) - 1
     $NewArray[$I][0] = $Array[$I][1]
     $NewArray[$I][1] = $Array[$I][0]
Next
$Array = $NewArray
_ArrayDisplay($Array, "$Array after reformatting")
; Example for 1D array
Global $Array1[4] = ["Smith, John", "Jones, Mary", "Johnson, Peter", "Fitch, Abercrombie"]
_ArrayDisplay($Array1, "$Array1 before reformatting")
For $I = 0 To UBound($Array1) - 1
     $aStrings = StringSplit($Array1[$I], ",")
     $String = ""
     For $X = $aStrings[0] To 1 Step -1
          $String &= $aStrings[$X] & " "
     Next
      $NewArray1[$I] = StringTrimRight($String, 1)
Next
$Array1 = $NewArray1
_ArrayDisplay($Array1, "$Array1 after reformatting")
Edited by BrewManNH

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Here is the RegEx version

$sStr = "Smith, John"
$sStr = StringRegExpReplace($sStr, "^(.+)\b.+\b(.+)$", "$2 $1")
MsgBox(0, "Result", $sStr)

EDIT: Of course you would just swap the array element for $sStr in your loop.

Edited by GEOSoft

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

RegEx in AutoIt is pretty much the same as in the engine they use for VB. You could also use "\2 \1" but using the "$" in place of "\" is always the prefered method and that applies to any engine.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

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

×
×
  • Create New...