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

Categories

0 votes
685 views
in Technique[技术] by (71.8m points)

javascript - Whatsapp text format convert into html format

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

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

1 Answer

0 votes
by (71.8m points)

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);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...