I have a file containing the following content:
Maringa=123123
Marialva=789789
Mandaguacu=123456
Cidadex=A341a2
How do I get only the characters before =
, using regular expression?
I tried it like this: .*=
But the String comes with the same char (=), I wish I could deny this char.