8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

encodeURIComponent を使ってエスケープされない文字もエンコードしたいとき

Last updated at Posted at 2015-12-30

encodeURIComponent を使ってURLエンコードをしたいけど、エスケープされない文字もエンコードしたいときの方法です。

  • encodeURIComponentアルファベット、10進数字、- _ . ! ~ * ' ( ) はエスケープしないので下記の方法で対応。

#### メソッド 例: . (ドット)と、 - (ハイフン) も URL エンコードしたい場合、`/[.-]/g` を指定するとよいです。
function fixedEncodeURIComponent(str) {
  return encodeURIComponent(str).replace(/[.-]/g, function(c) {
    return '%' + c.charCodeAt(0).toString(16);
  });
}

使い方

str = "hoge-abcd.foo-efg";
res = fixedEncodeURIComponent(str);
console.log(res);
// "hoge%2dabcd%2efoo%2defg"

> 参考文献 : [MDN encodeURIComponent()](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) encodeURIComponent は次を除く全ての文字をエスケープします : アルファベット、10進数字、- _ . ! ~ * ' ( )
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?