13
I have a file containing the following contents:
Maringa=123123
Marialva=789789
Mandaguacu=123456
Cidadex=A341a2
How do I pick up only the characters before the =
, using regular expression?
I tried it this way: .*=
But then the String comes with the same char (=), I wish I could deny that char.
What language are you using?
– elias
What programming language are you using? Different programming languages implement regexes with slightly different syntaxes.
– Victor Stafusa
I was in need for Delphi, it worked. Thank you.
– fymoribe