Community
Participate
Working Groups
myNumber = myString.asNumber(); myString = myBigInt.asString(); IWN.VAL.6619.e 8/29 stringFunctions - myString.asNumber cannot be resolved. A IWN.VAL.6619.e 9/24 stringFunctions - myBigInt.asString cannot be resolved.
I am not sure where this came from? Is there a document that says that String should have a asNumber() function and BigInt should have an asString()? I think the proper way to do this is: myNumber = myString as Number; myString = myBigInt as String;
OK. I didn't know how to read the EString code.
OK.