Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
String to Array
#2
Nice routine but why need an array at all for delimeters?

Could replace

Code: (Select All)
If Mid$(ST, c, 1) = Delim(i) Then

with

Code: (Select All)
If Mid$(ST, c, 1) = Mid$(DL, i, 1) Then

Your way would be better if the "delimeter" is allowed to be more than one character. Smile
Reply


Messages In This Thread
String to Array - by AtomicSlaughter - 02-13-2023, 10:31 AM
RE: String to Array - by mnrvovrfc - 02-13-2023, 10:11 PM



Users browsing this thread: 1 Guest(s)