Difference between revisions of "LlBase64ToInteger/ja"

From Second Life Wiki
Jump to navigation Jump to search
(Initial translation)
 
 
(3 intermediate revisions by one other user not shown)
Line 6: Line 6:
|spec
|spec
|caveats=*'''str''' が 6 文字未満の場合、戻り値は不定です。
|caveats=*'''str''' が 6 文字未満の場合、戻り値は不定です。
*'''str''' が 9 文字以上の場合ゼロを返します。
*'''str''' が 8 文字より大きい場合ゼロを返します。
|constants
|constants
|examples=<lsl>
|examples=<source lang="lsl2">
integer value = llBase64ToInteger("3q0AAA==");
integer value = llBase64ToInteger("3q0AAA==");


// -559087616 と表示されます。
// -559087616 と表示されます。
llOwnerSay((string)value);
llOwnerSay((string)value);
</lsl>
</source>
|helpers
|helpers
|also_functions={{LSL DefineRow||{{LSLG/ja|llIntegerToBase64}}|}}
|also_functions={{LSL DefineRow||{{LSLG/ja|llIntegerToBase64}}|}}

Latest revision as of 15:28, 25 February 2016

要約

関数: integer llBase64ToInteger( string str );

Base64暗号化 形式の str"Wikipedia logo"ビッグエンディアンとしてデコードした整数を integer で返します。

• string str Base64 形式の文字列

警告

  • str が 6 文字未満の場合、戻り値は不定です。
  • str が 8 文字より大きい場合ゼロを返します。
All Issues ~ Search JIRA for related Bugs

サンプル

integer value = llBase64ToInteger("3q0AAA==");

// -559087616 と表示されます。
llOwnerSay((string)value);

関連項目

関数

•  llIntegerToBase64

記事

•  Base64暗号化

特記事項

Search JIRA for related Issues

Signature

function integer llBase64ToInteger( string str );
この翻訳は 原文 と比べて古いですか?間違いがありますか?読みにくいですか?みんなで 修正 していきましょう! (手順はこちら)
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。