I have a text line that has text in it and somewhere in the middle there is going to be a number, like for example:
"This is a sample of one of the many text lines and this is text line 233 but there are many more lines to follow"
How to I find the number or at least the 1st digit?
EDIT:
Never mind I got it
Code:' ' For n = 1 To Len(TextLine) If IsNumeric(Mid(TextLine, n, 1)) Then ' '


Reply With Quote