On the Translation of regular expressions

source = "

><<>sadas

"; Regex Reg = new Regex(@"(?is)(?<=<P>).*?(?=</P>)", RegexOptions.IgnoreCase); //

var Content = Reg.Match(source).Value; //js // (?is)(?<=<P>).*?(?=</P>) //
Mar.05,2021

js regular function is relatively weak, only backward matching, not forward matching


so "

> yo < hello, < ouch > feed sadas

" .match (/ (? < =

). *? (? <\ / p >) / ig)


this is due to the js rule function limitation on the browser side.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b36ad0-e581.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b36ad0-e581.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?