次のことを行う正規表現を作成しようとしています: - 少なくとも 1 つを探し、=
これら=
を 1) 行末、または 2) ドット.
正規表現:
[=]+?[=]+.*?[.$]+
テスト文字列:
b == 123 //does not match, but which should as it is end of line!
b == 123. //does match "== 123.", which is OK
b == 123.abc //does match "== 123.", which is OK
ここで endofline$
アンカーに欠けているものは何ですか?