📅  最后修改于: 2021-01-07 08:11:35             🧑  作者: Mango
Perl语言是一种松散类型的语言,Perl解释器本身会选择数据类型。因此,不需要在Perl编程中指定数据类型。
Perl中基本上有三种数据类型:
在Perl中,有两种不同类型的标量常量:
Perl数字字面量是数字。 Perl在内部将数字存储为带符号整数或浮点值。
可为Perl数字字面量分配以下格式的类型:
Number | Type |
---|---|
526 | Integer |
5.5 | Floating point |
5e10 | Scientific notation |
5.5E | Scientific notation |
5_549_63 | A large number |
010101 | Binary number |
0175 | Octal number |
AF0230 | Hexadecimal number |
看上表,
Perl字符串字面量包含一个空字符串,ASCII文本,具有高位的ASCII或二进制数据。字符串中包含数据没有限制。它们被单引号(')或双引号('')包围。
在双引号字符串允许变量插值,但在单引号字符串不允许变量插值。此外,仅双引号字符串支持反斜杠(\)前面的特殊字符。
字符串字面量的转义字符
Characters | Purpose |
---|---|
\n | Denotes newline |
\r | Denotes carriage return |
\ t | Denotes horizontal tab |
\v | Denotes vertical tab |
\Q | Backslash following all non-alphanumeric character |
\a | Denotes alert |
\f | Denotes form feed |
\b | Denotes backspace |
\u | Change next character to uppercase |
\U | change all following characters to uppercase |
\l | Change next character to lowercase |
\L | Change all following character to lowercase |
\E | Denotes \U, \L, \Q |
\cX | Controls characters, X is a variable |
\0nn | Create octal formatted numbers |
\xnn | Create hexadecimal formatted numbers |
\\ | Denote backslash |
\’ | Denote single quote |
\” | Denote double quote |