“regex hapus tag html” Kode Jawaban

regex hapus tag html

const s = "<h1>Remove all <b>html tags</n></h1>"
s.replace(new RegExp('<[^>]*>', 'g'), '')
Knerbel

JS Regex Hapus tag HTML

var regex = /(<([^>]+)>)/ig
,   body = "<p>test</p>"
,   result = body.replace(regex, "");

console.log(result);

console.log($('<p>test</p>').text());
Shadow

regex hapus tag html

String target = someString.replaceAll("<[^>]*>", "");
Splendid Snail

Jawaban yang mirip dengan “regex hapus tag html”

Pertanyaan yang mirip dengan “regex hapus tag html”

Lebih banyak jawaban terkait untuk “regex hapus tag html” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya