I am trying to write a regular expression which gives me words which starts with <!=
and ends with =>
. For example if there is a sentence what is your <!=name=>
, the result should give me name
because it matches my pattern.
I have read to use this ^
for starts with and $
for ends with, but I am not able to match a combination of special characters.