How to check if an input is a str int or an float
-
I dont have to say for what i need this :)
-
Hey,
There is no built in solution for it yet, afaik. You would need to loop through the string and decide for every character what it is.
You could use the tokenizer to find out: a float is a number with a dot, a int is a number and a string us everything between quotes...
https://fuzearena.com/help/view/chrVal
https://fuzearena.com/forum/topic/70/hints-and-tips/10 -
@mario-bodemann Thanks so much