Thread Regex Frage
(6 answers)
Opened by Kuerbis at 2015-04-17 11:00
Hallo,
ist diese Regex ok (der (?:(?!<script).)+?-Teil)? (Im Eingefangenen sollte kein "<script" vorkommen.) Code (perl): (dl
)
1 2 3 if ( $html =~ m{<script type="application/ld\+json">((?:(?!<script).)+?)</script>}s ) { $json = $1; } |