Difference between revisions of "LlUnescapeURL/ja"
Jump to navigation
Jump to search
m |
|||
Line 8: | Line 8: | ||
|constants | |constants | ||
|examples= | |examples= | ||
< | <source lang="lsl2">default { | ||
state_entry() { | state_entry() { | ||
string str = "Any string, with anything in it, goes here!"; | string str = "Any string, with anything in it, goes here!"; | ||
Line 15: | Line 15: | ||
// Unescape と Escape は互いに逆向きの操作だからです。 | // Unescape と Escape は互いに逆向きの操作だからです。 | ||
} | } | ||
}</ | }</source> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||{{LSLG/ja|llEscapeURL}}| llUnescapeURL の逆}} | |also_functions={{LSL DefineRow||{{LSLG/ja|llEscapeURL}}| llUnescapeURL の逆}} |
Latest revision as of 03:44, 25 February 2016
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: llUnescapeURL( string url );警告
- 16 進エンコードで UTF-8 バイトエンコードの表記をしたときだけ、ASCII7 以外の文字 (Unicode 文字) にアクセスできます。
サンプル
default {
state_entry() {
string str = "Any string, with anything in it, goes here!";
llOwnerSay(llUnescapeURL(llEscapeURL(str)));
// 変数 "str" の内容がそのまま表示されます。
// Unescape と Escape は互いに逆向きの操作だからです。
}
}
関連項目
関数
• | llEscapeURL | – | llUnescapeURL の逆 |
記事
• | UTF-8 | |||
• | Base64暗号化 | |||
• | Combined Library: UnicodeIntegerToUTF8 | – | Unicode 文字コードを文字列に簡単に変換できます。 |
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。