现在的位置: 首页 > 综合 > 正文

unix下的编辑器ed帮助手册和正则表达式的学习

2013年06月20日 ⁄ 综合 ⁄ 共 10783字 ⁄ 字号 评论关闭

 看看unix下文本编辑器ed,顺便学习一下正则表达式:

http://www.gnu.org/software/ed/manual/ed_manual.html


关于正则表达式的manual:

Code:
  1. [wzb@wzb ~]$ man 7 regex | cat  
  2. REGEX(7)                                                              REGEX(7)  
  3.   
  4.   
  5.   
  6. NAME  
  7.        regex - POSIX.2 regular expressions  
  8.   
  9. DESCRIPTION  
  10.        Regular  expressions  (‘‘RE’’s),  as  defined  in  POSIX.2, come in two  
  11.        forms:  modern  REs  (roughly  those  of  egrep;  1003.2  calls   these  
  12.        ‘‘extended’’  REs)  and  obsolete  REs  (roughly those of ed(1); 1003.2  
  13.        ‘‘basic’’ REs).  Obsolete REs mostly exist for  backward  compatibility  
  14.        in some old programs; they will be discussed at the end.  1003.2 leaves  
  15.        some aspects of RE syntax and semantics open; ‘(!)’ marks decisions  on  
  16.        these  aspects that may not be fully portable to other 1003.2 implemen-  
  17.        tations.  
  18.   
  19.        A (modern) RE is one(!) or more  non-empty(!)  branches,  separated  by  
  20.        ‘|’.  It matches anything that matches one of the branches.  
  21.   
  22.        A  branch  is  one(!) or more pieces, concatenated.  It matches a match  
  23.        for the first, followed by a match for the second, etc.  
  24.   
  25.        A piece is an atom possibly followed by a single(!) ‘*’, ‘+’,  ‘?’,  or  
  26.        bound.  An atom followed by ‘*’ matches a sequence of 0 or more matches  
  27.        of the atom.  An atom followed by ‘+’ matches a sequence of 1  or  more  
  28.        matches  of  the atom.  An atom followed by ‘?’ matches a sequence of 0  
  29.        or 1 matches of the atom.  
  30.   
  31.        A bound is ‘{’ followed by an unsigned decimal integer,  possibly  fol-  
  32.        lowed  by  ‘,’  possibly  followed by another unsigned decimal integer,  
  33.        always followed by ‘}’.  The integers must lie between 0 and RE_DUP_MAX  
  34.        (255(!))  inclusive,  and  if  there are two of them, the first may not  
  35.        exceed the second.  An atom followed by a bound containing one  integer  
  36.        i and no comma matches a sequence of exactly i matches of the atom.  An  
  37.        atom followed by a bound containing one integer i and a comma matches a  
  38.        sequence of i or more matches of the atom.  An atom followed by a bound  
  39.        containing two integers i and j matches  a  sequence  of  i  through  j  
  40.        (inclusive) matches of the atom.  
  41.   
  42.        An  atom is a regular expression enclosed in ‘()’ (matching a match for  
  43.        the regular expression), an  empty  set  of  ‘()’  (matching  the  null  
  44.        string)(!), a bracket expression (see below), ‘.’  (matching any single  
  45.        character), ‘^’ (matching the null string at the beginning of a  line),  
  46.        ‘$’  (matching the null string at the end of a line), a ‘/’ followed by  
  47.        one of the characters ‘^.[$()|*+?{/’ (matching that character taken  as  
  48.        an  ordinary  character),  a  ‘/’  followed  by  any other character(!)  
  49.        (matching that character taken as an ordinary character, as if the  ‘/’  
  50.        had  not been present(!)), or a single character with no other signifi-  
  51.        cance (matching that character).  A ‘{’ followed by a  character  other  
  52.        than a digit is an ordinary character, not the beginning of a bound(!).  
  53.        It is illegal to end an RE with ‘/’.  
  54.   
  55.        A bracket expression is a list of characters enclosed in ‘[]’.  It nor-  
  56.        mally  matches  any single character from the list (but see below).  If  
  57.        the list begins with ‘^’, it matches  any  single  character  (but  see  
  58.        below)  not  from  the rest of the list.  If two characters in the list  
  59.        are separated by ‘-’, this is shorthand for the full range  of  charac-  
  60.        ters  between  those  two  (inclusive)  in the collating sequence, e.g.  
  61.        ‘[0-9]’ in ASCII matches any decimal digit.  It is illegal(!)  for  two  
  62.        ranges  to share an endpoint, e.g. ‘a-c-e’.  Ranges are very collating-  
  63.        sequence-dependent, and portable programs should avoid relying on them.  
  64.   
  65.        To include a literal ‘]’ in the list, make it the first character (fol-  
  66.        lowing a possible ‘^’).  To include a literal ‘-’, make it the first or  
  67.        last  character,  or  the second endpoint of a range.  To use a literal  
  68.        ‘-’ as the first endpoint of a range, enclose it in ‘[.’  and  ‘.]’  to  
  69.        make  it  a collating element (see below).  With the exception of these  
  70.        and some combinations using ‘[’ (see next paragraphs), all  other  spe-  
  71.        cial  characters, including ‘/’, lose their special significance within  
  72.        a bracket expression.  
  73.   
  74.        Within a bracket expression, a collating element (a character, a multi-  
  75.        character sequence that collates as if it were a single character, or a  
  76.        collating-sequence name for either) enclosed in ‘[.’  and  ‘.]’  stands  
  77.        for the sequence of characters of that collating element.  The sequence  
  78.        is a single element  of  the  bracket  expression’s  list.   A  bracket  
  79.        expression  containing  a  multi-character  collating  element can thus  
  80.        match more than one character, e.g. if the collating sequence  includes  
  81.        a  ‘ch’  collating  element, then the RE ‘[[.ch.]]*c’ matches the first  
  82.        five characters of ‘chchcc’.  
  83.   
  84.        Within a bracket expression, a collating element enclosed in  ‘[=’  and  
  85.        ‘=]’  is an equivalence class, standing for the sequences of characters  
  86.        of all collating elements equivalent to  that  one,  including  itself.  
  87.        (If  there are no other equivalent collating elements, the treatment is  
  88.        as if the enclosing delimiters were ‘[.’ and ‘.]’.)  For example, if  o  
  89.        and  ^  are  the  members  of  an  equivalence  class,  then ‘[[=o=]]’,  
  90.        ‘[[=^=]]’, and ‘[o^]’ are all synonymous.   An  equivalence  class  may  
  91.        not(!) be an endpoint of a range.  
  92.   
  93.        Within  a bracket expression, the name of a character class enclosed in  
  94.        ‘[:’ and ‘:]’ stands for the list of all characters belonging  to  that  
  95.        class.  Standard character class names are:  
  96.   
  97.               alnum       digit       punct  
  98.               alpha       graph       space  
  99.               blank       lower       upper  
  100.               cntrl       print       xdigit  
  101.   
  102.        These  stand  for the character classes defined in wctype(3).  A locale  
  103.        may provide others.  A character class may not be used as  an  endpoint  
  104.        of a range.  
  105.   
  106.        In  the event that an RE could match more than one substring of a given  
  107.        string, the RE matches the one starting earliest in the string.  If the  
  108.        RE  could  match  more  than  one  substring starting at that point, it  
  109.        matches the longest.  Subexpressions also match  the  longest  possible  
  110.        substrings,  subject  to the constraint that the whole match be as long  
  111.        as possible, with subexpressions starting earlier in the RE taking pri-  
  112.        ority  over ones starting later.  Note that higher-level subexpressions  
  113.        thus take priority over their lower-level component subexpressions.  
  114.   
  115.        Match lengths are measured in characters, not  collating  elements.   A  
  116.        null  string  is  considered longer than no match at all.  For example,  
  117.        ‘bb*’   matches   the   three    middle    characters    of    ‘abbbc’,  
  118.        ‘(wee|week)(knights|nights)’    matches    all    ten   characters   of  
  119.        ‘weeknights’, when ‘(.*).*’ is matched against ‘abc’ the  parenthesized  
  120.        subexpression matches all three characters, and when ‘(a*)*’ is matched  
  121.        against ‘bc’ both the whole  RE  and  the  parenthesized  subexpression  
  122.        match the null string.  
  123.   
  124.        If case-independent matching is specified, the effect is much as if all  
  125.        case distinctions had vanished from the alphabet.  When  an  alphabetic  
  126.        that  exists in multiple cases appears as an ordinary character outside  
  127.        a bracket expression, it is  effectively  transformed  into  a  bracket  
  128.        expression  containing  both  cases,  e.g. ‘x’ becomes ‘[xX]’.  When it  
  129.        appears inside a bracket expression, all case counterparts  of  it  are  
  130.        added  to  the  bracket expression, so that (e.g.) ‘[x]’ becomes ‘[xX]’  
  131.        and ‘[^x]’ becomes ‘[^xX]’.  
  132.   
  133.        No particular limit is imposed  on  the  length  of  REs(!).   Programs  
  134.        intended to be portable should not employ REs longer than 256 bytes, as  
  135.        an implementation can refuse to accept such REs and  remain  POSIX-com-  
  136.        pliant.  
  137.   
  138.        Obsolete  (‘‘basic’’)  regular  expressions differ in several respects.  
  139.        ‘|’, ‘+’, and ‘?’ are ordinary characters and there  is  no  equivalent  
  140.        for  their functionality.  The delimiters for bounds are ‘/{’ and ‘/}’,  
  141.        with ‘{’ and ‘}’ by themselves ordinary  characters.   The  parentheses  
  142.        for  nested subexpressions are ‘/(’ and ‘/)’, with ‘(’ and ‘)’ by them-  
  143.        selves ordinary characters.  ‘^’ is an ordinary character except at the  
  144.        beginning  of  the RE or(!) the beginning of a parenthesized subexpres-  
  145.        sion, ‘$’ is an ordinary character except at the end of  the  RE  or(!)  
  146.        the  end of a parenthesized subexpression, and ‘*’ is an ordinary char-  
  147.        acter if it appears at the beginning of the RE or the  beginning  of  a  
  148.        parenthesized  subexpression  (after a possible leading ‘^’).  Finally,  
  149.        there is one new type of atom, a back reference: ‘/’ followed by a non-  
  150.        zero decimal digit d matches the same sequence of characters matched by  
  151.        the dth parenthesized subexpression (numbering  subexpressions  by  the  
  152.        positions  of their opening parentheses, left to right), so that (e.g.)  
  153.        ‘/([bc]/)/1’ matches ‘bb’ or ‘cc’ but not ‘bc’.  
  154.   
  155. SEE ALSO  
  156.        regex(3)  
  157.   
  158.        POSIX.2, section 2.8 (Regular Expression Notation).  
  159.   
  160. BUGS  
  161.        Having two kinds of REs is a botch.  
  162.   
  163.        The current 1003.2 spec says that ‘)’ is an ordinary character  in  the  
  164.        absence  of  an  unmatched  ‘(’;  this was an unintentional result of a  
  165.        wording error, and change is likely.  Avoid relying on it.  
  166.   
  167.        Back references are a dreadful botch, posing major problems  for  effi-  
  168.        cient  implementations.   They  are also somewhat vaguely defined (does  
  169.        ‘a/(/(b/)*/2/)*d’ match ‘abbbd’?).  Avoid using them.  
  170.   
  171.        1003.2’s specification of  case-independent  matching  is  vague.   The  
  172.        ‘‘one  case  implies all cases’’ definition given above is current con-  
  173.        sensus among implementors as to the right interpretation.  
  174.   
  175.        The syntax for word boundaries is incredibly ugly.  
  176.   
  177. AUTHOR  
  178.        This page was taken from Henry Spencer’s regex package.  
  179.   
  180.   
  181.   
  182.                                   1994-02-07                          REGEX(7)  
  183. [wzb@wzb ~]$  

 

抱歉!评论已关闭.