R语言学习笔记(十九):字符串处理中预定义字符组(表格介绍)

R中预定义的字符组

代码 含义说明
[:digit:]\\d 数字; [0-9]
[^[:digit:]]\\D 非数字; 等价于[^0-9]
[:lower:] 小写字母; [a-z]
[:upper:] 大写字母; [A-Z]
[:alpha:] 字母; [a-z][A-Z]
[:alnum:] 所有字母及数字; [A-z0-9]
\\w 字符串; [A-z0-9_] (在ASCII编码下,\w[:alnum:]多了一个下划线)
[:xdigit:]\\x 十六进制数字; [0-9A-Fa-f]
[:punct:] 标点符号; ! " ' # $ % & ^ () * +
[:graph:] Graphical characters,即[:alnum:][:punct:]
[:blank:] 空字符; 即Space和Tab
[:space:]\\s Space,Tab,newline,及其他space characters
[:print:] 可打印的字符,即:[:alnum:][:punct:][:space:]
------- --------
\\b Empty string at either edge of a word(单词开头或结束的位置)
\\B Not the edge of a word(非单词开头或结束的位置)
\\< Beginning of a Word(单词开头的位置)
\\> End of a word(单词结束的位置)
上一篇:PHP魔术函数、魔术常量、预定义常量


下一篇:【BZOJ1414】[ZJOI2009]对称的正方形(哈希)