My guess is you would need to write a function that goes through each character to determine if it is a number or not. If that character is a number store it in a temporary value until the whole string is done then spit out the temporary value. Don't know of any function that is already available.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hello:
is there any way to convert a string that has alphanumeric characters to an int or real variable.
example
alis12.3li to 12.3
thanks.
My guess is you would need to write a function that goes through each character to determine if it is a number or not. If that character is a number store it in a temporary value until the whole string is done then spit out the temporary value. Don't know of any function that is already available.
ok,
thanks is working...