StringFlip

Flips a string, right-to-left, and if passed again, will flip it back
Can be used as very simple encryption

CodeFunctionName
What is this?

Public

Tested

Imported
Function StringFlip(Str)
' Flips a string
Out1 = ""
For i = Len(Str) To 1 Step -1
Out1 = Out1 & Mid(Str, i, 1)
Next
StringFlip = Out1
End Function

Str

Views 3,875

Downloads 1,181

CodeID
DB ID