<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: basic regular expressions in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644599#M879111</link>
    <description>Jose,&lt;BR /&gt;&lt;BR /&gt;I agree with Clay, that "perl" has the best pattern matching available in the free world.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
    <pubDate>Mon, 14 Jan 2002 19:52:16 GMT</pubDate>
    <dc:creator>harry d brown jr</dc:creator>
    <dc:date>2002-01-14T19:52:16Z</dc:date>
    <item>
      <title>basic regular expressions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644594#M879106</link>
      <description>I need to know how make basic regular expresion&lt;BR /&gt;and the name and significance of symbol that it use.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thank you.</description>
      <pubDate>Mon, 14 Jan 2002 19:25:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644594#M879106</guid>
      <dc:creator>Jose Ramirez_6</dc:creator>
      <dc:date>2002-01-14T19:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: basic regular expressions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644595#M879107</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;A good starting point is the man pages:&lt;BR /&gt;&lt;BR /&gt;# man 5 regexp&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 14 Jan 2002 19:32:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644595#M879107</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-01-14T19:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: basic regular expressions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644596#M879108</link>
      <description>/[Aa]nd/&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gnosis.cx/publish/programming/regular_expressions.html" target="_blank"&gt;http://gnosis.cx/publish/programming/regular_expressions.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://sitescooper.org/tao_regexps.html" target="_blank"&gt;http://sitescooper.org/tao_regexps.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.dbnet.ece.ntua.gr/~george/sed/sedtut_1.html" target="_blank"&gt;http://www.dbnet.ece.ntua.gr/~george/sed/sedtut_1.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://linus.chem.wesleyan.edu/documentation/gawk/gawk_17.html#SEC157" target="_blank"&gt;http://linus.chem.wesleyan.edu/documentation/gawk/gawk_17.html#SEC157&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 14 Jan 2002 19:47:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644596#M879108</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-14T19:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: basic regular expressions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644597#M879109</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This may help you:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/hpux/onlinedocs/B2355-90131/B2355-90131.html" target="_blank"&gt;http://www.docs.hp.com/hpux/onlinedocs/B2355-90131/B2355-90131.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Shiju&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jan 2002 19:49:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644597#M879109</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-14T19:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: basic regular expressions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644598#M879110</link>
      <description>Hi Jose:&lt;BR /&gt;&lt;BR /&gt;I'm going to be a bit of a radical here and suggest that since you are leanring regular expressions anyway, why not learn regular expressions on steroids - use Perl. Just as example, in basic RE to find whitespace you need to look for spaces, tabs, LF's, CR's, and&lt;BR /&gt;FF's explicitly. That's not hard, merely tedious. In Perl's re, all of that is simply \s or \S - non-whitespace. Man perlre for details. The nice thing about this approach is that you get the best of grep, awk, sed, and the shell rolled into one and this stuff will also port to Windows.&lt;BR /&gt;&lt;BR /&gt;Food for thought, Clay</description>
      <pubDate>Mon, 14 Jan 2002 19:50:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644598#M879110</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-01-14T19:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: basic regular expressions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644599#M879111</link>
      <description>Jose,&lt;BR /&gt;&lt;BR /&gt;I agree with Clay, that "perl" has the best pattern matching available in the free world.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 14 Jan 2002 19:52:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/basic-regular-expressions/m-p/2644599#M879111</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-14T19:52:16Z</dc:date>
    </item>
  </channel>
</rss>

