vote up 0 vote down star

Is there a built-in way to URL encode a string in Excel VBA or do I need to hand roll this functionality?

flag

1 Answer

vote up 3 vote down check

No, nothing built-in.

But there is http://www.freevbcode.com/ShowCode.asp?ID=1512, for example. They have this:

Public Function URLEncode( _
   StringToEncode As String, _
   Optional UsePlusRatherThanHexForSpace As Boolean = False _
) As String

  Dim TempAns As String
  Dim CurChr As Integer
  CurChr = 1

  Do Until CurChr - 1 = Len(StringToEncode)
    Select Case Asc(Mid(StringToEncode, CurChr, 1))
      Case 48 To 57, 65 To 90, 97 To 122
        TempAns = TempAns & Mid(StringToEncode, CurChr, 1)
      Case 32
        If UsePlusRatherThanHexForSpace = True Then
          TempAns = TempAns & "+"
        Else
          TempAns = TempAns & "%" & Hex(32)
        End If
      Case Else
        TempAns = TempAns & "%" & _
          Format(Hex(Asc(Mid(StringToEncode, _
          CurChr, 1))), "00")
    End Select

    CurChr = CurChr + 1
  Loop

  URLEncode = TempAns
End Function
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.