0
0

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.

正規表現がわからない!!(たすけてJSの偉い人)

0
Last updated at Posted at 2019-02-22

正規表現がわからない!!

以下のコードを書いてみたら、ダイアログが表示されないことに気付いた。
正規表現リテラルを「var ptn=/\\/g;」にすればダイアログ表示できるのに、なぜだ( ^ω^)・・・

何故かダイアログが表示されない
orig=" \\ ";
var ptn=/\b\\\b/g;
var flag=orig.match(ptn);
if(flag!=null){
    alert('match');
}

結論:だれかおしえてたすけて!

0
0
2

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?