Thread Kurzfassung If-Bedingung
(23 answers)
Opened by Jan at 2018-01-11 15:57 Code: (dl
)
1 perl -wE '$description = qq(fooWYSIWYG\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; Last edited: 2018-01-11 19:41:44 +0100 (CET) |