grep | sed | awkを使用して標準入力で正規表現をテストします。

grep | sed | awkを使用して標準入力で正規表現をテストします。

時には正規表現が正しいかどうかをテストしたい時があります。

regex標準入力で逆方向マッチングを実行するには?

Fe I は、文字列を提供された正規表現と一致させることができます。たとえば、次のようになります。

grep "\(foo\)-bar"
foo
bar
foo-bar
foo-bar #Match found

私がやりたいことはその逆です。次のようになります。

$ grep "This is one string"
\(This\) #Will send "This" to stdout
This?.*  #Will send full match

あまりにも多くのスクリプトなしでこれは可能ですか?

ベストアンサー1

シェルで次の関数を定義します(直接入力するか、シェルに入れることができます~/.bashrc)。

testregex() {
  [ "$#" -eq 1 ] || return 1
  while IFS= read -r line; do
    printf '%s\n' "$1" | grep -Eoe "$line"
  done
}

その後、次のように正規表現をテストできます。

$ testregex 'This is a line'
This            <--input
This            <--output
This?.*         <--input
This is a line  <--output
slkdjflksdj     <--input with no output (no match)
s.*             <--input
s is a line     <--output
$               <--I pressed Ctrl-D to end the test

おすすめ記事