On Samstag, 30. Juni 2001 15:36, CVS by raabe wrote: > kdenetwork/knewsticker knt-0.1-0.2.pl,1.1,1.2 > Author: raabe > Sat Jun 30 13:36:07 UTC 2001 > > > Modified Files: > knt-0.1-0.2.pl > Log Message: > - Use the first "=" in a string as a separator, not the last one (this > fixes converting Address lines like > Address=http://derkarl.org/kcvscommits.rdf.phtml?dir=noatun). > > -$data{$1} = $2 if /(.*)=(.*)/; > +$data{$1} = $2 if /^([^=]*)=(.*)$/; /(.*?)=(.*)/; would have done it :) -Malte