In regular expressions:
^
and \A
?$
and \Z
?In single-line mode, $
matches either the end of the string, or just before the newline at the end of the string. In multiline mode $
matches before each newline in the string. \Z
always matches only the end of the string regardless of the line mode. Same with ^
versus \A
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With