transcode(URIString, Options) -> Result
OTP 21.0
類型:
URIString = uri_string()
Options =
[{in_encoding, unicode:encoding()} |
{out_encoding, unicode:encoding()}]
Result = uri_string() | error()
轉碼RFC 3986合規的URIString
, 在哪裏Options
是標記元組的列表,指定入站 (in_encoding
) 和出站 (out_encoding
) 編碼。in_encoding
和out_encoding
指定輸入和輸出數據的二進製編碼和percent-encoding。不支持混合編碼,其中二進製編碼與percent-encoding不同。如果參數無效,則返回錯誤元組。
例子:
1> uri_string:transcode(<<"foo%00%00%00%F6bar"/utf32>>,
1> [{in_encoding, utf32},{out_encoding, utf8}]).
<<"foo%C3%B6bar"/utf8>>
2> uri_string:transcode("foo%F6bar", [{in_encoding, latin1},
2> {out_encoding, utf8}]).
"foo%C3%B6bar"
相關用法
- erlang transaction(Fun)用法及代碼示例
- erlang trace_pattern(MFA :: send, MatchSpec, FlagList :: [])用法及代碼示例
- erlang trace_pattern(MFA :: 'receive', MatchSpec, FlagList :: [])用法及代碼示例
- erlang traverse(Name, Fun)用法及代碼示例
- erlang trunc(Number)用法及代碼示例
- erlang trim(String)用法及代碼示例
- erlang tan用法及代碼示例
- erlang tuple_to_list用法及代碼示例
- erlang term_to_binary用法及代碼示例
- erlang table(Table)用法及代碼示例
- erlang term_to_binary(Term)用法及代碼示例
- erlang throw(Any)用法及代碼示例
- erlang time()用法及代碼示例
- erlang timestamp()用法及代碼示例
- erlang tl(List)用法及代碼示例
- erlang tuple_size(Tuple)用法及代碼示例
- erlang tuple_to_list(Tuple)用法及代碼示例
- erlang to_list(Q :: queue(Item))用法及代碼示例
- erlang take(Key, Orddict)用法及代碼示例
- erlang table(Name)用法及代碼示例
- erlang take(Key, Map1)用法及代碼示例
- erlang to_list(MapOrIterator)用法及代碼示例
- erlang take(String, Characters)用法及代碼示例
- erlang titlecase(String :: unicode:chardata())用法及代碼示例
- erlang to_float(String)用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 transcode(URIString, Options) -> Result。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。