Create a regex to delete data in between

前端 未结 2 488
太阳男子
太阳男子 2021-01-25 20:15

I am having the below given data

Mr. SIM Kamsath, Vice President & Branch Manager
Tel: +855 (0)12 922 660, +855 (0)15 900 269
E-mail: getemail(\'acledabank.c         


        
2条回答
  •  悲哀的现实
    2021-01-25 20:58

    E-mail:(?=(?:(?!E-mail)[\s\S])*P.O. Box)\s\S*\.([\s\S]*?)(?=Fax)
    

    Try this.Grab the capture.See demo.

    https://regex101.com/r/rU8yP6/15

提交回复
热议问题