If we take a text Like this
<p>Portable <span class="shlt">Adobe</span> <span class="shlt">After</span>
<span class="shlt">Effects</span> CC <span class="shlt">2018</span> 15.1.1.12 (x64)</p>
There are words between those <span class="shlt"></span>
tags. I need to capture The title Only!
(You can clearly see that it contains Portable Adobe After Effects CC 2018 15.1.1.12 (x64))
Is it possible to avoid capturing <span class="shlt">
and </span>
Parts?
And Capture only the Portable Adobe After Effects CC 2018 15.1.1.12 (x64) Text?
What I am currently trying to do is Capturing the words in between those tags. Is there a better way! A sample regex Code will be useful. In PHP Please...