Update urlencode.bm
This commit is contained in:
parent
346f1b40b9
commit
aeaaf6661d
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ Function urlencode$ (strng$)
|
|||
Case 48 TO 57, 65 TO 90, 97 TO 122, 45, 46, 95
|
||||
buf$ = buf$ + char$
|
||||
Case Else
|
||||
buf$ = buf$ + "%" + Hex$(Asc(char$))
|
||||
buf$ = buf$ + "%" + Right$("0" + Hex$(Asc(char$)), 2)
|
||||
End Select
|
||||
Next i
|
||||
urlencode$ = buf$
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue