I have a question about a regex. Given this part of a regex:
(.[^\\.]+)
The part [^\.]+
Does this mean get everything until the first dot? So with this text:
Hello my name is Martijn. I live in Holland.
I get 2 results: both sentences. But when I leave the + sign, I get 2 two characters: he
, ll
, o<space>
, my
, etc. Why is that?