Click or drag to resize

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: DotNumerics.FortranLibrary
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int LEN_TRIM(
	string s
)
Request Example View Source

Parameters

s  String

Return Value

Int32
Remarks
From Intel Fortran Language Reference
See Also