加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Match Nonprintable Characters

发布时间:2020-12-14 01:52:47 所属栏目:百科 来源:网络整理
导读:1. Requirement Match a string of the following ASCII control characters: bell,escape,form feed,line feed,carriage return,horizontal tab,vertical tab 2. Code ----------------------------------------------------------------------------------

1. Requirement

Match a string of the following ASCII control characters:

bell,escape,form feed,line feed,carriage return,horizontal tab,vertical tab


2. Code

-----------------------------------------------------------------------------------------------------

| Control characters | representation way | control way | 7-bit way |

-------------------------------------------------------------------------------------------------------

| bell | a | cG | x07 |

--------------------------------------------------------------------------------------------------------

| escape | e | -- | x1B |

--------------------------------------------------------------------------------------------------------

| form feed | f | cL | x0C |

--------------------------------------------------------------------------------------------------------

| line feed(newline) | n | cJ | x0A |

--------------------------------------------------------------------------------------------------------

| carriage return | r | cM | x0D |

---------------------------------------------------------------------------------------------------------

| horizontal tab | t | cI | x09 |

---------------------------------------------------------------------------------------------------------

| vertical tab | v | cK | x0B |

---------------------------------------------------------------------------------------------------------


3. Ascii

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读