2

例如,我从文档中知道,例如

http://stat.ethz.ch/R-manual/R-devel/library/base/html/regex.html

[:punct:]

包括

! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~.

但我想从命令行检查(在我的情况下,是 R,但在 bash 等中可能类似),并列出 [:alpha:] 等。

4

2 回答 2

2
 grep("[[:punct:]]", unlist(strsplit(rawToChar(as.raw(1:127)), "")), value = TRUE)
 ## [1] "!"  "\"" "#"  "$"  "%"  "&"  "'"  "("  ")"  "*"  "+"  ","  "-"  "."  "/" 
 ## [16] ":"  ";"  "<"  "="  ">"  "?"  "@"  "["  "\\" "]"  "^"  "_"  "`"  "{"  "|" 
 ## [31] "}"  "~" 

gsub("[^[:punct:]]", "", rawToChar(as.raw(1:127)), "")
## [1] "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
于 2014-03-21T17:53:30.173 回答
0

如果您只需要担心 ASCII,那么可能会执行以下操作(使用 bash):

$ for n in {0..127}; do awk '{ printf("%c", $0); }' <<< $n | grep '[[:punct:]]' | tr '\n' ' '; done
! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~

$ for n in {0..127}; do awk '{ printf("%c", $0); }' <<< $n | grep '[[:alnum:]]' | tr '\n' ' '; done
0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z
于 2014-03-21T17:26:56.820 回答