Earlier I posted a question about regex which resulted in stackoverflow error in java. My Regex was greedy and many commented to use possessive quantifier in regex. So, I started learning Possessive quantifier in regex.
I tried to match string between double quotes. My regex is
"([^\\"]|\\.)++"
I tried to match the string
"Hello I am \" chitti"
While matching there was backtracks. I tested using http://regex101.com/#PCRE. The link to regex is REGEX 101 LINK
Can someone please explain why there is a backtrack involved steps 6,8,10 etc