R Ripley Registered User. Local time Today, 10:15 Joined Aug 4, 2006 Messages 148 Jan 28, 2007 #1 Hello. Is they anyway to return the last character of a string? for example: Dim strA as string Dim strB as integer strA = "12345ABC" I need some code to return the "C" in strB.
Hello. Is they anyway to return the last character of a string? for example: Dim strA as string Dim strB as integer strA = "12345ABC" I need some code to return the "C" in strB.
MarkK bit cruncher Local time Today, 02:15 Joined Mar 17, 2004 Messages 8,571 Jan 28, 2007 #2 strA = Right("12345ABC", 1)