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.
にマッチする正規表現を書いていfooSVM??!ます。SVMこの文字列で一致させたいのですが、つまり、 fromfooから meet ?orまで一致させる必要があり!ます。SVM他の Unicode 文字である可能性があることに注意してください。
fooSVM??!
SVM
foo
?
!
試してみfoo(.*)[?!]*ましたが、うまくいかないようです。
foo(.*)[?!]*
改行を入れることができない場合、次のようにします:
foo([^?!]+)[?!]
最初のグループを取得します。
foo # Find "f", then "o", then "o", ( # begin capture [^?!] # followed by any character which is not "!" or "?", + # once or more ) # end capture [?!] # followed by either a "!" or a "?"