Trim - script- en diagramfunctie
Trim() retourneert de invoertekenreeks, ontdaan van alle begin- en eindspaties.
Syntaxis:
Trim(text)
Retourgegevenstypen: tekenreeks
Voorbeeld: Diagramuitdrukking
Voorbeeld | Resultaat |
---|---|
Trim( ' abc' ) | Retourneert 'abc' |
Trim( 'abc ' ) | Retourneert 'abc' |
Trim( ' abc ' ) | Retourneert 'abc' |
Voorbeeld: 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');
InformatieDe opdracht "Set verbatim=1" is opgenomen in het voorbeeld om ervoor te zorgen dat de ruimten niet automatisch worden afgekapt voordat de trim-functie wordt getoond. Raadpleeg Verbatim voor meer informatie.
Resultaat
Tekenreeks | StringLength | TrimStringLength |
---|---|---|
def | 6 | 3 |
abc | 10 | 3 |