Scilab-Branch-6.1-GIT
- Scilabヘルプ
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcspn
- strindex
- string
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
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 | asciimat >> |