📜  D编程-字符

📅  最后修改于: 2020-11-04 05:09:31             🧑  作者: Mango


字符是字符串。书写系统的任何符号都称为字符:字母,字母,数字,标点符号,空格字符等。令人困惑的是,字符本身的构造块也称为字符。

小写字母a的整数值为97,数字1的整数值为49。在设计ASCII表时,仅根据约定分配了这些值。

下表列出了标准字符类型及其存储大小和用途。

字符由char类型表示,只能容纳256个不同的值。如果您熟悉其他语言的char类型,则可能已经知道它的大小不足以支持许多书写系统的符号。

Type Storage size Purpose
char 1 byte UTF-8 code unit
wchar 2 bytes UTF-16 code unit
dchar 4 bytes UTF-32 code unit and Unicode code point

下面列出了一些有用的字符功能-

  • isLower-确定是否使用小写字符?

  • isUpper-确定是否大写字符?

  • isAlpha-确定Unicode字母数字字符(通常是字母还是数字)?

  • isWhite-确定是否有空格字符?

  • toLower-产生给定字符的小写字母。

  • toUpper-产生给定字符的大写字母。

import std.stdio;
import std.uni;

void main() { 
   writeln("Is ğ lowercase? ", isLower('ğ')); 
   writeln("Is Ş lowercase? ", isLower('Ş'));  
   
   writeln("Is İ uppercase? ", isUpper('İ')); 
   writeln("Is ç uppercase? ", isUpper('ç')); 
   
   writeln("Is z alphanumeric? ",       isAlpha('z'));  
   writeln("Is new-line whitespace? ",  isWhite('\n')); 
   
   writeln("Is underline whitespace? ", isWhite('_'));  
   
   writeln("The lowercase of Ğ: ", toLower('Ğ')); 
   writeln("The lowercase of İ: ", toLower('İ')); 
   
   writeln("The uppercase of ş: ", toUpper('ş')); 
   writeln("The uppercase of ı: ", toUpper('ı')); 
}

编译并执行上述代码后,将产生以下结果-

Is ğ lowercase? true 
Is Ş lowercase? false 
Is İ uppercase? true 
Is ç uppercase? false
Is z alphanumeric? true 
Is new-line whitespace? true 
Is underline whitespace? false 
The lowercase of Ğ: ğ 
The lowercase of İ: i 
The uppercase of ş: Ş 
The uppercase of ı: I 

阅读D中的字符

我们可以使用readf读取字符,如下所示。

readf(" %s", &letter);

由于D编程支持unicode,因此为了读取unicode字符,我们需要读取两次并写入两次才能获得预期的结果。这不适用于在线编译器。该示例如下所示。

import std.stdio;

void main() { 
   char firstCode; 
   char secondCode; 
   
   write("Please enter a letter: "); 
   readf(" %s", &firstCode); 
   readf(" %s", &secondCode); 
   
   writeln("The letter that has been read: ", firstCode, secondCode); 
} 

编译并执行上述代码后,将产生以下结果-

Please enter a letter: ğ 
The letter that has been read: ğ