I have an address like
New street 4
462005 MG Road
Tel .: 02281 / 93-1-212
Fax .: 02681 / 93-1148
I want string before "Tel" and remove whatever comes after "Tel"
New street 4
462005 MG Road
What i have tried is
(?!^Tel$)(^.*$)
But its only gives first line. New street 4
How can be achieve this using regular expression without any PHP function.
without any PHP function.. missed that important update.Tel.