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.
一致させようとしている次の正規表現は何 expect -re "classType=(.{3})"ですか?これ(.{3})は正規表現で何を意味しますか?
expect -re "classType=(.{3})"
(.{3})
正規表現では、.任意の文字に一致{3}し、何かを3回繰り返すための接尾辞(つまり...)であり、その周りの括弧はそれをキャプチャグループにします。(つまり、一致した入力が$expect_out(1,string)後で利用できるようになります。)
.
{3}
...
$expect_out(1,string)
(...)---3文字と同じです。
(...)