vba filter hex digits from string excel

'Extremely fast function to parse hexidecimal digits from text string:

Function ForceStringToHexDigitsOnly$(s$)
    Dim i&, p&, max&, t&
    Dim b() As Byte, res() As Byte
    Static keep() As Boolean

    Const VALS$ = "0123456789 ABCDEFabcdef"
    
    If (Not Not keep) = 0 Then
        ReDim keep(0 To 255)
        For i = 1 To Len(VALS)
            keep(Asc(Mid$(VALS, i, 1))) = 1
        Next
    End If
    
    max = Len(s)
    ReDim res(0 To max)
    b = StrConv(s, vbFromUnicode)
    For i = 0 To Len(s) - 1
        t = b(i)
        If keep(t) Then
            res(p) = t
            p = p + 1
        End If
    Next
    ForceStringToHexDigitsOnly = Left$(StrConv(res, vbUnicode), p)
End Function

'------------------------------------------------------------------------------

MsgBox ForceStringToHexDigitsOnly("qA01mzBoo7o2F%F")  '<--displays: A01B72FF

'
'
'

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
excel vba big decimal to hex excel vba big hex to dec unsigned excel vba big hex to dec excel vba hexstring to decimal vba large hexidecimal string to decimal excel xl vba large hexidecimal string to decimal excel vba large hexidecimal string to decimal vba large hexidecimal string to decimal xl vba large hexadecimal string to decimal excel vba large hexadecimal string to decimal vba large hexadecimal string to decimal vba large hex string to decimal excel xl vba large hex string to decimal excel vba large hex string to decimal vba large hex string to decimal vba big hex string to decimal excel vba big hex string to decimal excel vba big hex string to decimal string excel vba keep only hexadecimal digits excel vba keep only hexadecimal digits in string parse filter excel vba keep only hex digits in string parse filter excel vba keep only hex digits in string parse excelvba keep only hex digits from text string excel vba keep only hex digits from text string excel vba filter hex digits from string vba filter hex digits from string excel vba filter hex digits from string xl vba parse hex digits string filter excel vba parse hex digits string filter vba parse hex digits string filter vba parse hex digits text string filter excelvba parse hex digits text string filter excel vba parse hex digits text string filter vba parse hex digits text string excel vba parse hex digits string excel xl vba parse hex digits string excelvba parse hex digits string excel vba parse hex digits string vba parse hex digits string vba parse hex digits from string excelvba parse hex digits from string excel vba parse hex digits from string
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source