Thread Kurzfassung If-Bedingung (23 answers)
Opened by Jan at 2018-01-11 15:57

Gast payx
 2018-01-11 19:32
#187877 #187877
Code: (dl )
1
2
perl -wE '$description = qq(fooWYSIWYG\nbar); say $description !~/WYSIWYG/ig ? $description =~s/\n/<br>/gr : $description;'
perl -wE '$description = qq(fooWYSIWOG\nbar); say $description !~/WYSIWYG/ig ? $description =~s/\n/<br>/gr : $description;'

Edit: Also, Deine Zeile müsste dann heißen:

Code (perl): (dl )
$itemSet{'item'}{'description'} = $description !~/WYSIWYG/ig ? $description =~s/\n/<br>/gr : $description;

Das funktioniert aber erst ab Perl 5.10 (ungefähr), Du brauchst also etwas wie
Code (perl): (dl )
use 5.010;
in Deinem Programm.
Last edited: 2018-01-11 19:41:44 +0100 (CET)

View full thread Kurzfassung If-Bedingung