wm.tn.util:stringListToDoubleList
Converts a list of java.lang.String objects to a list of java.util. Double objects.
Input Parameters
list | String List A list of Strings you want to convert to java.util.Double objects. |
Output Parameters
value | Object List The converted list of Double values. |
Usage Notes
This service uses the java.text.NumberFormat.parse method. It will throw an exception if any String in the input variable
list is unparsable.
If any String in
list contains both digits and non-numeric characters, this service ignores all digits following the first non-numeric. For example, if a String contains “123x45.67”, the corresponding element in value will be 123.