Find and delete everything between two characters
-
What I have:
<displayform>Abdel-Rahman Lawendy</displayform>Lawendy
<displayform>Gihan Abdel-Malek</displayform>Abdel-MalekWhat I have been trying to do is figure out how to delete everything between the <displayform> and </displayform>. I’m just not good with Regex.
Any help would be Very Gratefully Appreciated.
Thanks in advance. -
Find
<displayform>.*?(?=</displayform>)
Replace<displayform>
-