Sponsored Content
Top Forums Shell Programming and Scripting awk and POSIX character class Post 302459419 by alister on Monday 4th of October 2010 03:38:20 PM
Old 10-04-2010
Quote:
Originally Posted by anthalamus
thanks guys,
here's the revised version:

Code:
echo "./comparecdna.summary" | awk '/^[.][/]compare[[:alnum:]]+[.]summary$/' # returns: ./comparecdna.summary
echo "./compare_cdna.summary" | awk '/^[.][/]compare_[[:alnum:]]+[.]summary$/' # returns: ./compare_cdna.summary
echo "./compare_cdna_peptide.summary" | awk '/^[.][/]compare_[_[:alnum:]]+[.]summary$/' # returns: ./compare_cdna_peptide.summary
[:word:] is non-standard POSIX apparently

alister, the "/" seems not need be escaped here, maybe because it's by itself within the []?
It is required according to the posix standard. I strongly suggest that you do not depend on your implementation's behavior. Perhaps your awk allows that, but when run on a different implementation it may choke thusly:

Code:
$ echo "./comparecdna.summary" | awk '/^[.][/]compare[[:alnum:]]+[.]summary$/'
awk: nonterminated character class ^[.][
 source line number 1
 context is
         >>> /^[.][/ <<<

AWK thinks it's an unterminated class because the regular expression delimiter is encountered.

For more info, read the "Regular Expressions" section @ awk

Regards,
Alister
This User Gave Thanks to alister For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

car class (not school class)

im just trying to have some fun and kill some time writing a c++ program that has a person type in a car make and model then gives them a year and a price. or something like that. i always have problems getting it goin but once the ball is rolling im usually pretty good. anyone wanna help me out? ... (1 Reply)
Discussion started by: rickym2626
1 Replies

2. UNIX for Dummies Questions & Answers

awk and sed class

awk and sed are made for unix admin. does anyone know which company offer awk or sed course ? (3 Replies)
Discussion started by: tjmannonline
3 Replies

3. Programming

C++ class definition with a member of the same class

Hi, i have a question about C++. Is it possible to declare a class with a member ot the same class? For example, a linked list or i want to convert this C code to C++ class (Elemento) typedef struct elemento { char name; char value; List<struct elemento> ltElementos; ... (7 Replies)
Discussion started by: pogdorica
7 Replies

4. Programming

static use for class inside the same class c++

Hi, I believe the next code is wrong: class Egg { Egg e; int i; Egg(int ii=0) : i(ii) {} }; because you would end up with an endless definition (memory allocation) of Egg objects, thus int i. Ok, so God Eckel proposes for a singleton: class Egg { static Egg e; int... (5 Replies)
Discussion started by: xavipoes
5 Replies

5. UNIX for Advanced & Expert Users

Get pointer for existing device class (struct class) in Linux kernel module

Hi all! I am trying to register a device in an existing device class, but I am having trouble getting the pointer to an existing class. I can create a class in a module, get the pointer to it and then use it to register the device with: *cl = class_create(THIS_MODULE, className);... (0 Replies)
Discussion started by: hdaniel@ualg.pt
0 Replies

6. Programming

Size of Derived class, upon virtual base class inheritance

I have the two class definition as follows. class A { public: int a; }; class B : virtual public A{ }; The size of class A is shown as 4, and size of class B is shown as 16. Why is this effect ?. (2 Replies)
Discussion started by: techmonk
2 Replies

7. Shell Programming and Scripting

Match string against character class in bash

Hello, I want to check whether string has only numeric characters. The following code doesn't work for me #!/usr/local/bin/bash if ]]; then echo "true" else echo "False" fi # ./yyy '346' False # ./yyy 'aaa' False I'm searching for solution using character classes, not regex.... (5 Replies)
Discussion started by: urello
5 Replies

8. Programming

C++ : Base class member function not accessible from derived class

Hello All, I am a learner in C++. I was testing my inheritance knowledge with following piece of code. #include <iostream> using namespace std; class base { public : void display() { cout << "In base display()" << endl; } void display(int k) {... (2 Replies)
Discussion started by: anand.shah
2 Replies

9. Shell Programming and Scripting

Regex issue with \s in character class.

Anybody have an explanation for why \s doesn't match ' ' in a character class? Here are 3 examples with the final example showing that \s in a character class (demonstrated by using egrep -o) fails: \s works outside of class.. # echo " FOO " | egrep -o '\s+\s' FOO Here is a... (6 Replies)
Discussion started by: blackrageous
6 Replies
ISWGRAPH(3)						     Linux Programmer's Manual						       ISWGRAPH(3)

NAME
iswgraph - test for graphic wide character SYNOPSIS
#include <wctype.h> int iswgraph(wint_t wc); DESCRIPTION
The iswgraph() function is the wide-character equivalent of the isgraph(3) function. It tests whether wc is a wide character belonging to the wide-character class "graph". The wide-character class "graph" is a subclass of the wide-character class "print". Being a subclass of the wide-character class "print", the wide-character class "graph" is disjoint from the wide-character class "cntrl". The wide-character class "graph" is disjoint from the wide-character class "space" and therefore also disjoint from its subclass "blank". The wide-character class "graph" contains all the wide characters from the wide-character class "print" except the space character. It therefore contains the wide-character classes "alnum" and "punct". RETURN VALUE
The iswgraph() function returns nonzero if wc is a wide character belonging to the wide-character class "graph". Otherwise, it returns zero. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +-----------+---------------+----------------+ |Interface | Attribute | Value | +-----------+---------------+----------------+ |iswgraph() | Thread safety | MT-Safe locale | +-----------+---------------+----------------+ CONFORMING TO
POSIX.1-2001, POSIX.1-2008, C99. NOTES
The behavior of iswgraph() depends on the LC_CTYPE category of the current locale. SEE ALSO
isgraph(3), iswctype(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. GNU
2015-08-08 ISWGRAPH(3)
All times are GMT -4. The time now is 05:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy