Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

parsing a string character by character 1

Status
Not open for further replies.

temp

Programmer
Feb 15, 2000
2
CA
need to examine a string character by character in code.<br>
<br>
TIA.
 
do it in a for next loop using MID <br>
Replace &quot;YourString&quot; with the String you want to parse<br>
<br>
Dim Character As String<br>
For a = 1 To Len(YourString)<br>
Character = Mid(YourString, a, 1)<br>
Debug.Print Character<br>
Next<br>
<br>
<br>
<p> DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top