从
A Brief Introduction to Regular Expressions
@H_502_12@
对于GNU工具,grep.info中的以下内容适用:
[:blank:]匹配空格或制表符.
[:space:]匹配空白字符(空格和水平制表符).
对我来说,两个定义是相同的,我想知道它们是否真的重复?
如果它们不同,有什么区别?
[:blank:] Blank characters: space and tab. [:space:] Space characters: in the 'C' locale,this is tab,newline,vertical tab,form Feed,carriage return,and space.