Why we use (?<!…) instead of (?!…) while matching a pattern which should not be preceded by a specific pattern?
Lets see through example. We have two strings below ,Out First is Hello World. How is it?Out First is Hi World. How is it?I want…