Created
September 28, 2016 21:02
-
-
Save asynxc/2b8e901202394c7cfaac3f032bd4aa80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'StrReverse() Alternative function | |
'MSVBVM60.rtcStrReverse | |
Public Declare Function rtcStrReverse Lib "MSVBVM60" (ByVal sStr As String) As String | |
Public Function Alternative_StrReverse(ByVal sStr As String) As String | |
Alternative_StrReverse = StrConv(rtcStrReverse(StrConv(sStr, vbUnicode)), vbFromUnicode) | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment