如何对一个字符串只使用一次而不是多次使用 replace() 方法?

how to use replace() method for a string just one time instead of mutliple times?

str 是一个 html 字符串(或包含完整 html 的字符串)但中间有一些我试图摆脱的不需要的代码。

到目前为止,这对我有用:

const contentClean = str.replace(/=0A/gm,"").replace(/(=09)/gm,"").replace(/(=\r\n)/gm,"").replace(/(3D)/gm,"");

如何在上面的代码中只编写一次而不是 4 次的 replace() 方法?

只需在 | 的每种可能性之间交替:

const contentClean = str.replace(/=0A|=09|=\r\n|3D/gm, "");

请注意,不需要捕获组。