FortranLibLEN_TRIM(String) Method |
LEN_TRIM
Description: Returns the length of the character argument without counting trailing blank
characters.
Syntax: result = LEN_TRIM (string [, kind])
Class: Elemental function; Generic
Arguments:
string Must be of type character.
kind (opt) Must be a scalar integer initialization expression.
Examples
LEN_TRIM (' C D ') has the value 7.
LEN_TRIM (' ') has the value 0.
Namespace: Altaxo.Calc.Ode.ObsoleteAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static int LEN_TRIM(
string s
)
Parameters
- s String
- The string whose trailing blanks should be ignored.
Return Value
Int32The length of
s after trimming trailing blanks.
Remarks
From Intel Fortran Language Reference
See Also