RosettaCodeData/Task/Determine-if-a-string-is-numeric/Apex/determine-if-a-string-is-numeric.apex
2023-07-01 13:44:08 -04:00

8 lines
375 B
Text

String numericString = '123456';
String partlyNumericString = '123DMS';
String decimalString = '123.456';
System.debug(numericString.isNumeric()); // this will be true
System.debug(partlyNumericString.isNumeric()); // this will be false
System.debug(decimalString.isNumeric()); // this will be false
System.debug(decimalString.remove('.').isNumeric()); // this will be true