Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列からいくつかのユニコード文字[E000-F8FF]を削除しようとしています.javascriptでこれを行うにはどうすればよいですか? たとえば、この文字列から E018 を削除しようとしています。
ITクラウド </p>
str = str.replace(/[\uE000-\uF8FF]/g, '');
firebug から取得したスクリーンショット: