5

"で始まり、で終わらない 文字列を表す正規表現を作成するオプションはあります"か?

4

3 に答える 3

8

次の正規表現を使用できます。

^".*[^"]$

説明:

^     Start of line anchor
"     A literal "
.*    Any junk
[^"]  Any non " character
$     End of line anchor
于 2012-06-01T11:50:27.760 に答える
2

そこに行きます:

^".*[^"]$

^" starts with "
.* some chars (or none)
[^"]$ doesn't end with "
于 2012-06-01T11:50:50.500 に答える
2

どうぞ

^".*[^"]$

どの正規表現エンジンを使用していますか?

于 2012-06-01T11:51:00.803 に答える