User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Visual Basic 4 / 5 / 6 section within the Software Development category of DaniWeb, a massive community of 375,273 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,221 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Visual Basic 4 / 5 / 6 advertiser:
Feb 22nd, 2006
Views: 10,314
Another Small And Simple Function To Take Each Character of a string, and put it into an Array, This helps significantly when you need to sift through a string. This Function Uses The spush (String Push) Function, Also In Code Snippits.
visualbasic Syntax | 4 stars
  1. Public Function str2Array(xString As String) As String()
  2. Dim tmpArray() As String
  3. Dim tmpchar As String
  4.  
  5. ' /* For Each Character In The String */
  6. For I = 1 To Len(xString)
  7.  
  8. ' /* Retrieve The Character */
  9. tmpchar = Mid(xString, I, 1)
  10. ' /* Push It Into The Temporary Array */
  11. spush tmpArray, tmpchar
  12. Next I
  13.  
  14. ' /* Return The Array To The Calling Procedure */
  15. str2Array = tmpArray
  16. End Function
Comments (Newest First)
wilsonjan | Newbie Poster | Oct 18th, 2006
Apologies, I was being a bit dim and thought this group included .net

:cry:
wilsonjan | Newbie Poster | Oct 18th, 2006
Couldn't you just do:

xString.ToCharArray

The only difference would be that you'd have a char array instead of a string array.

Alternatively, a better way in .net 2.0 would be to use the Array.ConvertAll method.

Regards,

Jan.
Post Comment

Only community members can submit or comment on code snippets. You must register or log in to contribute.

DaniWeb Marketplace (Sponsored Links)
All times are GMT -4. The time now is 6:02 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC