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?
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>')
Previous: If you judge that url contains words?
Next: How to simulate the ctx.session information in koa-session when testing with jest?