URL decoding: Difference between revisions

m
→‎Raku: .. yet more shorter and logical code
(→‎Raku: .. more concise)
m (→‎Raku: .. yet more shorter and logical code)
Line 1,270:
say $url.subst: :g,
/ [ '%' ( <:hexdigit> ** 2 ) ]+ / ,
{ Blob.new((:16(~$_) for $0».Str)).decode }
;</lang>
 
Anonymous user