Jump to content

string seperation?


 Share

Recommended Posts

Global $info = 'ABC12345', $info1, $info2

Global $split = StringSplit($info, '')
For $i = 1 To $split[0]
    If StringIsDigit($split[$i]) Then
        $info2 &= $split[$i]
    Else
        $info1 &= $split[$i]
    EndIf
Next

MsgBox(0,'Number',$info2)

MsgBox(0,'Letter',$info1)

It's not that hard

Edited by athiwatc
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...