March 2014 update
This commit is contained in:
parent
09687c4926
commit
a25938f123
1846 changed files with 21876 additions and 5203 deletions
|
|
@ -2,7 +2,7 @@ function u = urldecoding(s)
|
|||
u = '';
|
||||
k = 1;
|
||||
while k<=length(s)
|
||||
if s(k) == '%' && k+3 <= length(s)
|
||||
if s(k) == '%' && k+2 <= length(s)
|
||||
u = sprintf('%s%c', u, char(hex2dec(s((k+1):(k+2)))));
|
||||
k = k + 3;
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue