Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Need help to convert whatsapp text format to html format and convert html format to whatsapp text format. Using php script or javascript.

*bold* to <strong>bold</strong>
<strong>bold</strong> to *bold*

_italic_ to <em>italic</em>
<em>italic</em> to _italic_

~strike~ to <del>strike</del>
<del>strike</del> to ~strike~
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
691 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try this:

let strBold = '*bold*';
let replacedBold = strBold.replace(/*(?=w)/, '<strong>').replace(/(?<=w)*/, '</strong>')
console.log(replacedBold);

let strItalic = '_italic_';
let replacedItalic = strItalic.replace(/\_(?=w)/, '<em>').replace(/(?<=w)\_/, '</em>');
console.log(replacedItalic);

let strStrike = '~strike~';
let replacedStrike = strStrike.replace(/~(?=w)/, '<del>').replace(/(?<=w)~/, '</del>');
console.log(replacedStrike);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...