Thread Zahlen bestimmter Größe im Text finden: RegEx Parser (13 answers)
Opened by Gast at 2007-03-06 18:30

bloonix
 2007-03-07 16:09
#74819 #74819
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
[quote=renee,07.03.2007, 15:00]Die 0 wird nicht vorausgesetzt, weil das * 0,1 oder viele male bedeutet...[/quote]
Jauh, stimmt, aber leider besteht da noch immer das Problem, das eine
"Nichtzahl" am Anfang und am Ende verlangt wird.

Code: (dl )
1
2
3
4
5
6
7
8
use strict;
use warnings;

my @strings = ('foo 1 bar', '1 foo bar', 'foo bar 1');

for my $string (@strings) {
print "$string\n" if $string =~ /\D0*([1234]?\d|5[0123])\D/gc;
}


foo 1 bar

Edit: Code hinzugefügt\n\n

<!--EDIT|opi|1173276725-->
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Zahlen bestimmter Größe im Text finden: RegEx Parser