Visual Basic Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingVisual Basic Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today!
  #1  
Old November 20th, 2004, 03:53 PM
Spontaneous Spontaneous is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 1 Spontaneous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Parse hex string into bytes

I am already parsing a string but currently I am using a delim to split it. I would like to just split per byte so I can get rid of the delim.

Public Function ParseToArray(strText As String, strArray() As Byte) As Long
Dim intPos As Long
Dim strDelim As String
ReDim strArray(10) As Byte
strText = Trim(strText)
strDelim = "|"
intIndex = 0
Do While strText <> ""
If intIndex > UBound(strArray()) Then
ReDim Preserve strArray(intIndex + 20)
End If
intPos = InStr(1, strText, strDelim)
If intPos > 0 Then
strArray(intIndex) = "&H" & Left(strText, InStr(1, strText, strDelim) - 1)
strText = Trim(Mid(strText, InStr(1, strText, strDelim) + 1))
Else
strArray(intIndex) = "&H" & strText
Exit Do
End If
intIndex = intIndex + 1
Loop
ReDim Preserve strArray(intIndex) As Byte
End Function

That is my current parsing code. It parses a string such as "E9|25|4F|32|FF". I wanna do it ""E9254F32FF" but the result split into bytes with the &H.

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingVisual Basic Programming > Parse hex string into bytes


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway