PurgeChar - 指令碼與圖表函數
PurgeChar() 會傳回包含輸入字串 ('text') 中包括之字元的字串,第二個引數 ('remove_chars') 中出現的任何字元除外。
語法:
PurgeChar(text, remove_chars)
傳回的資料類型: 字串
引數:
引數
text
|
原始字串。 |
remove_chars
|
包含 text 中要移除之字元的字串。 |
傳回的資料類型: string
PurgeChar ( 'a1b2c3','123' ) | Returns 'abc'. |
PurgeChar ( 'a1b2c3','312' ) | Returns 'abc'. |
T1: Load *, purgechar(String1, String2) as PurgeChar; Load * inline [ String1, String2 'a1b2c3', '123' ];
Results
Qlik Sense table showing the output from using the PurgeChar function in the load script.String1 | String2 | PurgeChar |
---|
a1b2c3 | 123 | abc |