seth_not@home: Reguläre Ausdrücke mit awk/ Denkfehler

Beitrag lesen

gudn tach!

doch wie bekomme ich das hin wenn ein zeichen z.b 3 mal vorkommen muss?

{3}

nomalerweise (d.h. in perl) gilt:

*    Match 0 or more times
    +    Match 1 or more times
    ?    Match 1 or 0 times
    {n}    Match exactly n times
    {n,}   Match at least n times
    {n,m}  Match at least n but not more than m times

(quelle: perldoc perlre)

in awk muss man das erst "freischalten":

Interval expressions are only available if either --posix or --re-interval is specified on the command line.

(quelle: man gawk)

prost
seth