Trim() returnerar strängen rensad på inledande och avslutande blankstegstecken.
Syntax:
Trim(text)
Returnerad datatyp: sträng
Exempel: Chart expression
Example
Result
Trim( ' abc' )
Returns 'abc'
Trim( 'abc ' )
Returns 'abc'
Trim( ' abc ' )
Returns 'abc'
Exempel: Load script
Set verbatim=1; T1: Load *, len(TrimString) as TrimStringLength; Load *, trim(String) as TrimString; Load *, len(String) as StringLength; Load * inline [ String ' abc ' ' def '](delimiter is '\t');
Anteckning om informationThe "Set verbatim=1" statement is included in the example to ensure that the spaces are not automatically trimmed before the demonstration of the trim function. See Verbatim for more information.
Result:
String
StringLength
TrimStringLength
def
6
3
abc
10
3
Var den här sidan till hjälp för dig?
Om du hittar några fel på denna sida eller i innehållet – ett stavfel, ett steg som saknas eller ett tekniskt fel – berätta för oss så att vi kan blir bättre!