The idea of finding a text replacement

has the following text

````

// 

<i></i><i></i>

that is,
odd `is replaced by < I > , and
even` is replaced by < / I >

.

how should I replace it with js?


I don't feel very good when I write it myself

while (str.includes('`')) {
  str = str.replace('`', PPi % 2 == 1 ? '<i>' : '</i>')
}


'````'.replace(/(`)([^`]*)\1/g, '<i>$2</i>')
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-1b306ba-4d3b0.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-1b306ba-4d3b0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?