在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
VBScript Right 函数VBScript Right 函数返回字符串最右边的指定数量的字符。 完整的 VBScript 参考手册 Right 函数从字符串的右侧返回指定数量的字符。 提示:请使用 Len 函数来确定字符串中的字符数量。 提示:请参阅 Left 函数。 语法 Right(string,length)
实例实例 1 <script type="text/vbscript"> txt="This is a beautiful day!" document.write(Right(txt,10)) </script> 以上实例输出结果: tiful day! 尝试一下 » 实例 2返回整个字符串: <script type="text/vbscript"> txt="This is a beautiful day!" x=Len(txt) document.write(Right(txt,x)) </script> 以上实例输出结果: This is a beautiful day! 尝试一下 » 完整的 VBScript 参考手册 |
请发表评论