Hello,
can you help me please?
I have to find out if a character variable inside is alphanumeric or numeric.
Is there an easy command, that I can use?
Thank you in advance, kind regards
Iris
alphanumeric vs. numeric
- Iris Gesser
- Posts: 38
- Joined: Fri Apr 22, 2016 10:19 pm
- Been thanked: 1 time
Re: alphanumeric vs. numeric
Hallo Iris,
VAL returns the info You are looking for
Msgalert( VAL( "aaa" ) ) = 0
Msgalert( VAL( "111" ) ) = 111
best regards
Uwe![Very Happy :D](./images/smilies/icon_biggrin.gif)
I have to find out if a character variable inside is alphanumeric or numeric.
VAL returns the info You are looking for
Msgalert( VAL( "aaa" ) ) = 0
Msgalert( VAL( "111" ) ) = 111
best regards
Uwe
![Very Happy :D](./images/smilies/icon_biggrin.gif)
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
- Iris Gesser
- Posts: 38
- Joined: Fri Apr 22, 2016 10:19 pm
- Been thanked: 1 time
Re: alphanumeric vs. numeric
Hello Uwe,
thank you for your answer.
I have tried with VAL, but this is not the solution.
local cNumber = "1S2673Z"
msginfo(VAL(cNumber)) = 1
I think VAL evaluates cNumber until the first non-numeric character.
Thank you and kind regards
Iris
thank you for your answer.
I have tried with VAL, but this is not the solution.
local cNumber = "1S2673Z"
msginfo(VAL(cNumber)) = 1
I think VAL evaluates cNumber until the first non-numeric character.
Thank you and kind regards
Iris
Re: alphanumeric vs. numeric
Try with
Code: Select all | Expand
? hb_IsNumeric( <var> )
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
- Iris Gesser
- Posts: 38
- Joined: Fri Apr 22, 2016 10:19 pm
- Been thanked: 1 time