<div dir="ltr"><div dir="ltr">Hi,<div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Sep 17, 2021 at 12:28 AM Linux Threads <<a href="mailto:linuxthreads@gmail.com">linuxthreads@gmail.com</a>> wrote:</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
the following does not work for me I am sure the / in AV AI/ML Model is<br>
the culprit<br>
<br>
next if (/AV AI/ML Model:/);<br></blockquote><div><br></div><div>Correct, you need to escape quote the center slash in 'AI/ML' with a backslash as it is also used as the delimiter for the regex. Try this</div><div><br></div><div> next if (/AV AI\/ML Model:/);</div><div><br></div><div>-andreas</div></div></div>