制御文字を取り除く
// 制御文字を取り除く function removeControlCharacter(str){ return str.replace(/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]\[(3\d|0)m/g, '') } This post is licensed under CC BY 4.0 by the author.
// 制御文字を取り除く function removeControlCharacter(str){ return str.replace(/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]\[(3\d|0)m/g, '') }