I have a string named Value which contains user input. I'm simply trying to check if $ is the utmost-left (first) character within the string, and if so, remove it from this string. My code is below, but this isn't working.
Could someone please suggest how I could accomplish this? Thanks.
--
Regards,
Mike
Code:
If Value.Substring(0, 1) = "$" Then
Value = Mid(Value, Len(Value) - 1)
End If
--
Regards,
Mike