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 |