StrReverse 函数 [VBA]

将字符串中的字符顺序反转,然后返回反转后的字符串。

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


语法:


StrReverse (Text1 As String)

返回值:

String

参数:

Text1」: 希望将字符逆序排列的字符串表达式。

错误代码:

5 无效的过程调用

示例:


Sub ExampleReverse
 Print StrReverse("ABCdefGH") ' return "HGfedCBA"
End Sub

请支持我们!