| battlesquid | rindolf, i don't knwo what Shlomi means, but it sounds very good with Fish :-) |
| rindolf | battlesquid: an English woman nicknamed me "Slimy Fish". ;-) |
| f00li5h | j2daosh: you can't just print a hash |
| battlesquid | rindolf, hehe nice one rindolf++ |
| ThiefMaster | \b(?<!\()TM(?!\))(?!\.net\.my)\b <- i have this regex to match e.g. "TM", "TM:", "TM?", etc. but not "TM.net.my" or "(tm)". however, it also does not match when the string is e.g. "(tm" as the "no (" and "no )" arguments are separate. is it possible to combine them? so i want it to match on "(tm" or "tm)" but NOT on (tm) |
| rindolf | battlesquid: Shlomi means "My Shalom" which is "My well-being" |
| j2daosh | so i have to turn it into a list by assigning to an array and then printing? |
| rindolf | battlesquid: http://en.wikipedia.org/wiki/Shlomi_(disambiguation) |
| battlesquid | rindolf, i see, so combining Fish and your well being, i'd say you are one healthy fish :-) |
| BinGOs | eval: my %foo = qw(a 1 b 2); "HASH = %foo"; |
| rindolf | battlesquid: OK. |
| buubot | BinGOs: HASH = %foo |
| rindolf | battlesquid: some people think that Fish ought to be spelled "Fisch". |
| j2daosh | is thier a push/pop operator for hashes? |
| rindolf | battlesquid: but my late grandfather spelled it "Fish". |
| battlesquid | rindolf, Fish is much nicer |
| rindolf | battlesquid: yeah. battlesquid: Fisch is "Fish" in German. |
| battlesquid | rindolf, my name is Anders Nordb. Anders means "man" in german and my last name is just a rural place in Norway :-P boring huh. |
| rindolf | battlesquid: my father's maiden name was "David", and I have a cousin named "Shlomi David". |
| trym | I have a list of filenames, all which contain a room name and a number (if any). The room names are written in different ways and cases, and sometimes _ is used to separate name from number - sometimes not. Any libraries / known approaches that I can reuse? |
| rindolf | battlesquid: ah. battlesquid: isn't Anders like Andr or Andrew? |
| action | CPAN upload: Apache2-AuthZSympa-0.5.0 by DOUMBZH |
| CPAN | upload: Apache2-AuthZSympa-0.5.0 by DOUMBZH |
| battlesquid | rindolf, pretty much the same when translating. english people tend to call me Andy |
| j2daosh | wheres merlyn? |
| BinGOs | taking a break from all you young'uns pesky questions. GumbyBRAIN: Y'all come back now, Y'here |
| GumbyBRAIN | And back on my already too slow server now has to be covering it with now. |
| j2daosh | i really wsih he would have made a "how to add hash keys/values in a foreach()" section in his learning perl book |
| LeKstor | hi all does anyone has already been unable to remove his breakpoints using perldb ? |
| f00li5h | j2daosh: don't change the thing you're foreaching over, it will do crazy things j2daosh: perhaps you want map, or grep? |
| LeKstor | i'm doing something quite simple, like "b 2" and "D" or "d 2" prints no result and with "L", I see that the breakpoint is still here |
| j2daosh | well all i am trying to do is : foreach $line (@lines_from_file){ split some crap up; hash = "$foo" => "$bar";} but i dont see a "push" operator for hashes... |