thegame8311
Technical User
somehow I have case like this
1John
what's the best way to get
1 John
1John
what's the best way to get
1 John
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Confusion reigns here. There are so many different possibilities that no single solution will work without more information to define EXACTLY what is needed
cString = <The Input String>
* --- Get Part Without Numerics ---
cChkNumerics = "0123456789"
cAlphaPart = CHRTRAN(cString, cChkNumerics, "")
* --- Get Part Without Alphas ---
cChkUpperAlpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
cChkLowerAlpha = LOWER(cChkUpperAlpha)
cNumericPart = CHRTRAN(cString, cChkUpperAlpha + cChkLowerAlpha, "")
* --- Recombine for Result ---
cNewString = cNumericPart + " " + cAlphaPart
this is screaming out to use reguler expression , cannot understand why any of the experts have not pointed to this