I have hundred lines of codes. I want to copy all values from class "title". Is there a way to do it?
For example :
<span ><span dir="auto" title="SAMPLE1" >
<span dir="auto" title="SAMPLE2" >
<span ><span dir="auto" title="SAMPLE3" >
I want the output of SAMPLE1 , SAMPLE2, and SAMPLE3
Its a HTML code.
CodePudding user response:
- Open find box
- do a regex search for
(?<=title=")[^"]
- With focus still in find box press
Alt Enter
Ctrl C
Esc
- go to location where you want the texts
Ctrl V