描述
RIGHT函数根据您指定的字符数返回文本字符串中的最后一个或多个字符。
RIGHTB根据您指定的字节数返回文本字符串中的最后一个或多个字符。
RIGHT适用于使用单字节字符集(SBCS)的语言,而RIGHTB适用于使用双字节字符集(DBCS)的语言。您计算机上的默认语言设置会影响返回值,如下所示:
-
RIGHT 始终将每个字符(无论是单字节还是双字节)都计为1,无论默认语言设置是什么。
启用编辑支持DBCS的语言并将其设置为默认语言后, -
RIGHTB 会将每个双字节字符计数为2。否则,RIGHTB将每个字符计为1。
支持DBCS的语言包括日语,中文(简体),中文(繁体)和韩语。
语法
RIGHT (text, [num_chars]) RIGHTB (text, [num_bytes])
争论
Argument | 描述 | Required/Optional |
---|---|---|
Text | The text string containing the characters you want to extract. | Required |
Num_chars | Specifies the number of characters you want RIGHT to extract. | Optional |
Num_bytes | Specifies the number of characters you want RIGHTB to extract, based on bytes. | Optional |
Notes
Num_chars必须大于或等于零。
如果num_chars大于文本长度,则RIGHT返回所有文本。
如果省略num_chars,则假定为1。
If num_chars is < 0, RIGHT returns #VALUE! Error.
适用性
Excel 2007,Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-statistical-right-function.html
标签:字符,RIGHT,chars,JavaScript,Excel,无涯,num,RIGHTB From: https://blog.51cto.com/u_14033984/7664856