Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

=~と!~の左辺と右辺に気をつける

$
0
0

正規表現パターンを左辺と右辺どちらに書いても結果は同じだと思っていたら、右辺に書かないと正しくマッチしませんでした。

サンプル1
echo '\s'=~' '
echo ' '=~'\s'
結果
01
サンプル2
echo '\s'!~' ' 
echo ' '!~'\s'
結果
10

この仕様についてはVimのヘルプ:h E694に書いてありました。

The "=~" and "!~" operators match the lefthand argument with the righthand
argument, which is used as a pattern. 

Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>