Table of contents
Expand | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
|
...
With this tool, you can easily view the source code (Source), DOM model, and displayed text of the page loaded in the browser.
...
{-Page.Dom-}
- this variable stores the DOM of the tab. For source code, this is{-Page.Source-},
for text-{-Page.Text-}.
You can find others in the variables window .Why was column zero been excluded? Bracket group was used in the regular expression ((?<=<meta\ property=)"([a-z:]+)"\s+content="(.*?)"(?=>) - two groups are highlighted in red). When testing in the regular expression tester, going to the Groups tab , you will notice that three groups were found, despite the fact that we have two of them: the very first group contains the full match text, and then the groups that have been defined follow. And since the numbering starts from zero, we exclude exactly the column with the number 0, not 1.
...