|
◆ c2r()
elemental real function, public char_utilities::c2r |
( |
character(len=*), intent(in) |
string | ) |
|
Convert a character string to a real value if possible.
It is ELEMENTAL so it works with arrays of any shape. It returns missing value if the input cannot be converted or is empty or missing.
- Parametri
-
[in] | string | string to be represented as REAL |
Definizione alla linea 717 del file char_utilities.F90.
728 FUNCTION word_split(input_string, word_start, word_end, sep) RESULT(nword) 729 CHARACTER(len=*), INTENT(in) :: input_string 730 INTEGER, POINTER, OPTIONAL :: word_start(:) 731 INTEGER, POINTER, OPTIONAL :: word_end(:) 732 CHARACTER(len=1), OPTIONAL :: sep
|