how do I find all characters that follow a specific character in a string? Can I use Mid someway?
D Dave Tyler Dec 6, 2004 #1 how do I find all characters that follow a specific character in a string? Can I use Mid someway?
D Dirk Goldgar Dec 6, 2004 #3 Dave Tyler said: how do I find all characters that follow a specific character in a string? Can I use Mid someway? Click to expand... Example: Dim strSource As String Dim strTail As String strSource = "abcdefghijklm#nopqrstuvwxyz" ' Get all characters following the "#" (not including it). strTail = Mid(strSource, InStr(strSource, "#") + 1)
Dave Tyler said: how do I find all characters that follow a specific character in a string? Can I use Mid someway? Click to expand... Example: Dim strSource As String Dim strTail As String strSource = "abcdefghijklm#nopqrstuvwxyz" ' Get all characters following the "#" (not including it). strTail = Mid(strSource, InStr(strSource, "#") + 1)