Trim(), girdi dizesini öndeki ve sondaki boşlukları kırpılmış olarak döndürür.
Söz Dizimi:
Trim(text)
Dönüş verileri türü: dize
Örnek: Chart expression
Example
Result
Trim( ' abc' )
Returns 'abc'
Trim( 'abc ' )
Returns 'abc'
Trim( ' abc ' )
Returns 'abc'
Örnek: 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');
Bilgi notuThe "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
Bu sayfa size yardımcı oldu mu?
Bu sayfa veya içeriği ile ilgili bir sorun; bir yazım hatası, eksik bir adım veya teknik bir hata bulursanız, bize bildirin, düzeltelim!