< Perl Programming < Keywords

The lines
The chr keyword
chr returns the character specified with NUMBER. Negative values give the Unicode replacement character (chr(0xfffd)) as long as the bytes pragma is not selected. In that case, the low eight bits of the value truncated to an integer are used.
Without NUMBER, the contents of $_ are used.
chr is the reverse of ord.
Syntax
chr NUMBER
chr
Examples

#!"C:/Programms/Perl/site/bin"
use 5.10.0;
$number = 65;
say "number = " . $number, " corresponds to the code '" . chr $number . "'";
returns
number = 65 corresponds to the code 'A'
See also
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.