Jump to content

stringReplace


silvano
 Share

Recommended Posts

  • Developers

Dim $n[10]
$iString = "123"

$n[1] = "AA" ; number 1
$n[2] = "BB" ; number 2
$n[3] = "CC" ; number 3

; stringReplace....
; result
$newString = ""
$sSTring = StringSplit($iString, "")
For $x = 1 To $sSTring[0]
    $newString &= $n[$sSTring[$x]]
Next
ConsoleWrite('$newString = ' & $newString & @CRLF)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

$newstring = $n1 & $n2 & $n3

sorry my example is not complete..

I don't know original string, it is a number like 123 or 345

I would search the first number and replace it and again to second number.... in the string

like:

while

stringReplace...

endw

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...