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.
次の正規表現について質問があります。
次の文字列に一致させたい: employee Type="entry" id="mmop" location="somewhere" RE を次のように使用する:
employee Type="entry" id="mmop" location="somewhere"
if {[regexp {id=(".*")} $data -> Id]} { #do something here }
しかし、私が得た結果は"entry" id="mmop" location="somewhere"、どうすれば修正できますか?
"entry" id="mmop" location="somewhere"
?の後に追加する*か、 に置き換えます。この問題は、欲張りで、パターンに一致している間に可能な限りすべてを取得することによって引き起こされます。.[^"].*
?
*
.
[^"]
.*