跳转到内容

Perl 编程/关键字/ord

来自维基教科书,开放世界中的开放书籍
上一个:or 关键字 下一个:our

theord关键字

[编辑 | 编辑源代码]

ord返回与表达式关联的数字。如果表达式是空字符串,则函数返回 0。如果没有数字,则使用$_的内容。

ordchr 的反向操作。

  ord EXPRESSION
  ord
这些行
#!"C:/Programms/Perl/site/bin"
use 5.10.0;

$character = 'A';

say "character = '" . $character, "' corresponds to the value of " . ord $character;
返回
number = 65 corresponds to the code 'A'
character = 'A' corresponds to the value of 65
上一个:or 关键字 下一个:our
华夏公益教科书