Help for this page

Select Code to Download


  1. or download this
    <S> Who/WP is/VBZ <NP1> the/DT author/NN </NP> of/IN <NP2> the/DT book
    +/NN </NP> ,/,/*comma* "/"/*\
    quote* <NP3> The/DT Iron/NNP Lady/NNP </NP> :/: <NP4> A/DT Biography/N
    +NP of/IN \Margaret/NNP That\
    cher/NNP </NP> "/"/*quote* ?/./*end-of-sentence*</S>
    
  2. or download this
    <S> Who/WP is/VBZ  the author/NP of/IN  the book/NP ,/,  The Iron Lady
    +/NP :/:   A  Biography of Margaret That\
    cher/NP  "/"...
    
  3. or download this
     if ($sentence =~ / (<NP\d*>) ([a-zA-Z0-9.-_]+)\/([A-Z]+) ([^ ]+) (<\/
    +NP>) /) {
        $text="NounPhrase";    # to test the match to replace 
        $result =~ s/$question/$text/;
        print "$result";};