ascii
文字列をアスキー変換する
呼び出し手順
a=ascii(txt) txt=ascii(a)
引数
- txt
文字列または文字列の行列.
- a
整数アスキーコードのベクトル
説明
この関数はScilab文字列をアスキーコード (最初の127個のコードはASCIIです)またはアスキーコードののベクトルに変換します. もしくは,アスキーコードのベクトルをScilab文字列に変換します.
txt
が文字列の行列の場合,
ascii(txt)
は
ascii(strcat(txt))
と等価です
例
ascii(["hello";"world"]) ascii("scilab") ascii([115 99 105 108 97 98])
参照
- asciimat — Converts an array of text into ASCII/UTF8 codes, and reciprocally
Report an issue | ||
<< Strings | Strings | blanks >> |