Converts a number to its equivalent character string representation.
More...
|
character(len=maxstrlen) function | number_to_character_intg (NUMBER, FORMAT, ERR, ERROR) |
| Converts an integer number to its equivalent character string representation as determined by the supplied format. The format is of the form of a standard Fortran integer format e.g. "I3". More...
|
|
character(len=maxstrlen) function | number_to_character_lintg (NUMBER, FORMAT, ERR, ERROR) |
| Converts a long integer number to its equivalent character string representation as determined by the supplied format. The format is of the form of a standard Fortran integer format e.g. "I3". More...
|
|
character(len=maxstrlen) function | number_to_character_sp (NUMBER, FORMAT, ERR, ERROR) |
| Converts a single precision number to its equivalent character string representation as determined by the supplied format string. NOTE: If FORMAT is an asterisk followed by a number between 1 and 32 the format will be chosen to maximise the number of significant digits, e.g., FORMAT="*8" will return a string of 8 characters representing the supplied number in either F8.? or E8.? format depending on its magnitude. More...
|
|
character(len=maxstrlen) function | number_to_character_dp (NUMBER, FORMAT, ERR, ERROR) |
| Converts a double precision number to its equivalent character string representation as determined by the supplied format string. Note If FORMAT is an asterisk followed by a number between 1 and 32 the format will be chosen to maximise the number of significant digits, e.g., FORMAT="*8" will return a string of 8 characters representing the supplied number in either F8.? or E8.? format depending on its magnitude. More...
|
|
Converts a number to its equivalent character string representation.
Definition at line 153 of file strings.f90.
character(len=maxstrlen) function strings::numbertocharacter::number_to_character_dp |
( |
real(dp), intent(in) |
NUMBER, |
|
|
character(len=*), intent(in) |
FORMAT, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Converts a double precision number to its equivalent character string representation as determined by the supplied format string. Note If FORMAT is an asterisk followed by a number between 1 and 32 the format will be chosen to maximise the number of significant digits, e.g., FORMAT="*8" will return a string of 8 characters representing the supplied number in either F8.? or E8.? format depending on its magnitude.
- Parameters
-
[in] | number | The number to convert |
[in] | format | The format to use in the conversion |
[out] | err | The error code |
[out] | error | The error string |
- Returns
- On exit, the character equivalent of the number
Definition at line 1072 of file strings.f90.
character(len=maxstrlen) function strings::numbertocharacter::number_to_character_intg |
( |
integer(intg), intent(in) |
NUMBER, |
|
|
character(len=*), intent(in) |
FORMAT, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Converts an integer number to its equivalent character string representation as determined by the supplied format. The format is of the form of a standard Fortran integer format e.g. "I3".
- Parameters
-
[in] | number | The number to convert |
[in] | format | The format to use in the conversion |
[out] | err | The error code |
[out] | error | The error string |
- Returns
- On exit, the character equivalent of the number
Definition at line 908 of file strings.f90.
character(len=maxstrlen) function strings::numbertocharacter::number_to_character_lintg |
( |
integer(lintg), intent(in) |
NUMBER, |
|
|
character(len=*), intent(in) |
FORMAT, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Converts a long integer number to its equivalent character string representation as determined by the supplied format. The format is of the form of a standard Fortran integer format e.g. "I3".
- Parameters
-
[in] | number | The number to convert |
[in] | format | The format to use in the conversion |
[out] | err | The error code |
[out] | error | The error string |
- Returns
- On exit, the character equivalent of the number
Definition at line 944 of file strings.f90.
character(len=maxstrlen) function strings::numbertocharacter::number_to_character_sp |
( |
real(sp), intent(in) |
NUMBER, |
|
|
character(len=*), intent(in) |
FORMAT, |
|
|
integer(intg), intent(out) |
ERR, |
|
|
type(varying_string), intent(out) |
ERROR |
|
) |
| |
|
private |
Converts a single precision number to its equivalent character string representation as determined by the supplied format string. NOTE: If FORMAT is an asterisk followed by a number between 1 and 32 the format will be chosen to maximise the number of significant digits, e.g., FORMAT="*8" will return a string of 8 characters representing the supplied number in either F8.? or E8.? format depending on its magnitude.
- Parameters
-
[in] | number | The number to convert |
[in] | format | The format to use in the conversion |
[out] | err | The error code |
[out] | error | The error string |
- Returns
- On exit, the character equivalent of the number
Definition at line 980 of file strings.f90.