- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- basic regular expressions
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 11:25 AM
01-14-2002 11:25 AM
basic regular expressions
and the name and significance of symbol that it use.
thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 11:32 AM
01-14-2002 11:32 AM
Re: basic regular expressions
A good starting point is the man pages:
# man 5 regexp
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 11:47 AM
01-14-2002 11:47 AM
Re: basic regular expressions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 11:49 AM
01-14-2002 11:49 AM
Re: basic regular expressions
This may help you:
http://www.docs.hp.com/hpux/onlinedocs/B2355-90131/B2355-90131.html
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 11:50 AM
01-14-2002 11:50 AM
Re: basic regular expressions
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
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.
Food for thought, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2002 11:52 AM
01-14-2002 11:52 AM
Re: basic regular expressions
I agree with Clay, that "perl" has the best pattern matching available in the free world.
live free or die
harry