Right - 指令碼與圖表函數
Right() 會傳回包含輸入字串最後一個 (最右側) 字元的字串,其中字元數由第二個引數決定。
語法:
Right(text, count)
傳回的資料類型: 字串
引數:
引數
text
|
原始字串。 |
count
|
定義字串 text 最右側部分中要包括的字元數目。 |
Right('abcdef', 3) | Returns 'def' |
T1: Load *, right(Text,Start) as Right; Load * inline [ Text, Start 'abcdef', 3 '2021-07-14', 4 '2021-07-14', 2 ];
Result
Qlik Sense table showing the output from using the Right function in the load script.Text | Start | Right |
---|
abcdef | 3 | def |
2021-07-14 | 4 | 7-14 |
2021-07-14 | 2 | 14 |