Hi Detlef, I very much appreciate your idea of a regex tutorial. I would be very interested in reading and trying out one. I have looked for a good tutorial on the net quite a few times but not been able to find one. Unfortunately, I cannot take part in that suggested tutorial circle as I have hardly any idea of how regex work, but I would like to give feedback on anything you (and the circle) write/s.
Good idea! Regards Michael Kuyumcu Am Donnerstag, 26.09.02, um 01:05 Uhr (Europe/Berlin) schrieb Detlef Lindenthal: > Uli Wienands wrote about regex constructs: > > " ... I never could find the time to understand it > and the docs I have access to are just not clear enough ..." > > > -- In my beginning days I bought some regex books, but > what I found was that they where of little help for > bloody beginners -- they lack of examples. > > -- My brother uses to say, he does not like and learn > Perl and RegEx because they are so "cryptic" !!! -- > But I know that in most cases they have a very clear and > economic concept. -- > > My question to everyone: > Are there more Perlers who would like a beginners > tutorium to blow apart the fogs of crypticness? > > Or is it superfluous because useable tutorials already do > exist? > > All those beginner's questions would be useful for such a > tutorium. I have dozens of samples and I would like to > share them with others; and I would like to collect more > samples; and I also have tasks that I could not solve in an > elegant way. > > If we would have such a tutorial circle, where would it > meet: in this mailing list, or on some appropriate URL > with a more sophisticated forum? > > Suggestions and opinions are welcome. > > Detlef > > > ############################################### > ## Here is one example: > ## How can I split a string two-by-two? > ## One answer: > > $_ = "aabbccdde"; > print join " ", m,..,g; > > > >