Extract strings between HTML tags

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
HBinswanger
Posts: 17
Joined: 14 Feb 2016, 00:45

Extract strings between HTML tags

Post by HBinswanger » 24 Mar 2016, 21:30

I've looked in the (excellent) Help file, but couldn't find a good answer: how do I extract the content that lies between two tags. E.g., I want to get "John Doe" from a string that is:
blah blah <author>John Doe</author> blah blah

I realize that I could find the position of the start of <author>, add its length, find the position of the start of </author> and use that to do a MidString. But that seems clumsy.

User avatar
Exaskryz
Posts: 2882
Joined: 17 Oct 2015, 20:28

Re: Extract strings between HTML tags

Post by Exaskryz » 24 Mar 2016, 21:37

Code: Select all

string:="hello <b>world</b> please <sub>ignore</sub> me because you want <author>Jason</author> who is the real bit of interest"
pos:=RegExMatch(string, "<author>(?P<Name>.*?)</author>", match)
MsgBox % matchName
return

wolf_II
Posts: 2688
Joined: 08 Feb 2015, 20:55

Re: Extract strings between HTML tags

Post by wolf_II » 24 Mar 2016, 21:42

Try this:

Code: Select all

Text := "blah blah <author>John Doe</author> blah blah"

MsgBox, % RegExReplace(Text, ".*(<author>)(.*)(</author>).*", "$2")
I hope that helps.

guest3456
Posts: 3469
Joined: 09 Oct 2013, 10:31

Re: Extract strings between HTML tags

Post by guest3456 » 24 Mar 2016, 22:46

You can't parse [X]HTML with regex. Because HTML can't be parsed by regex. Regex is not a tool that can be used to correctly parse HTML. As I have answered in HTML-and-regex questions here so many times before, the use of regex will not allow you to consume HTML. Regular expressions are a tool that is insufficiently sophisticated to understand the constructs employed by HTML. HTML is not a regular language and hence cannot be parsed by regular expressions. Regex queries are not equipped to break down HTML into its meaningful parts. so many times but it is not getting to me. Even enhanced irregular regular expressions as used by Perl are not up to the task of parsing HTML. You will never make me crack. HTML is a language of sufficient complexity that it cannot be parsed by regular expressions. Even Jon Skeet cannot parse HTML using regular expressions. Every time you attempt to parse HTML with regular expressions, the unholy child weeps the blood of virgins, and Russian hackers pwn your webapp. Parsing HTML with regex summons tainted souls into the realm of the living. HTML and regex go together like love, marriage, and ritual infanticide. The <center> cannot hold it is too late. The force of regex and HTML together in the same conceptual space will destroy your mind like so much watery putty. If you parse HTML with regex you are giving in to Them and their blasphemous ways which doom us all to inhuman toil for the One whose Name cannot be expressed in the Basic Multilingual Plane, he comes. HTML-plus-regexp will liquify the n​erves of the sentient whilst you observe, your psyche withering in the onslaught of horror. Rege̿̔̉x-based HTML parsers are the cancer that is killing StackOverflow it is too late it is too late we cannot be saved the trangession of a chi͡ld ensures regex will consume all living tissue (except for HTML which it cannot, as previously prophesied) dear lord help us how can anyone survive this scourge using regex to parse HTML has doomed humanity to an eternity of dread torture and security holes using regex as a tool to process HTML establishes a breach between this world and the dread realm of c͒ͪo͛ͫrrupt entities (like SGML entities, but more corrupt) a mere glimpse of the world of reg​ex parsers for HTML will ins​tantly transport a programmer's consciousness into a world of ceaseless screaming, he comes, the pestilent slithy regex-infection wil​l devour your HT​ML parser, application and existence for all time like Visual Basic only worse he comes he comes do not fi​ght he com̡e̶s, ̕h̵i​s un̨ho͞ly radiańcé destro҉ying all enli̍̈́̂̈́ghtenment, HTML tags lea͠ki̧n͘g fr̶ǫm ̡yo​͟ur eye͢s̸ ̛l̕ik͏e liquid pain, the song of re̸gular exp​ression parsingwill exti​nguish the voices of mor​tal man from the sp​here I can see it can you see ̲͚̖͔̙î̩́t̲͎̩̱͔́̋̀ it is beautiful t​he final snuffing of the lie​s of Man ALL IS LOŚ͖̩͇̗̪̏̈́T ALL I​S LOST the pon̷y he comes he c̶̮omes he comes the ich​or permeates all MY FACE MY FACE ᵒh god no NO NOO̼O​O NΘ stop the an​*̶͑̾̾​̅ͫ͏̙̤g͇̫͛͆̾ͫ̑͆l͖͉̗̩̳̟̍ͫͥͨe̠̅s͎a̧͈͖r̽̾̈́͒͑e n​ot rè̑ͧ̌aͨl̘̝̙̃ͤ͂̾̆ ZA̡͊͠͝LGΌ ISͮ̂҉̯͈͕̹̘̱ TO͇̹̺ͅƝ̴ȳ̳ TH̘Ë͖́̉ ͠P̯͍̭O̚​N̐Y̡ H̸̡̪̯ͨ͊̽̅̾̎Ȩ̬̩̾͛ͪ̈́̀́͘ ̶̧̨̱̹̭̯ͧ̾ͬC̷̙̲̝͖ͭ̏ͥͮ͟Oͮ͏̮̪̝͍M̲̖͊̒ͪͩͬ̚̚͜Ȇ̴̟̟͙̞ͩ͌͝S̨̥̫͎̭ͯ̿̔̀ͅ

Have you tried using an XML parser instead?



kon
Posts: 1756
Joined: 29 Sep 2013, 17:11

Re: Extract strings between HTML tags

Post by kon » 25 Mar 2016, 02:28

Regex is not suited for parsing html as that stackoverflow post suggests. But, that was not the question. The question posed was basically, " How do I extract a substring from a string?" not, "How do I parse html and get all of the x tags?" I don't see a problem with using regex for this, as long as you don't need a full-on parser.

For a parser in AHK maybe try MSXML2 DOMDocument 6.0 or HTML File.

(Edit: removed an untested statement about regex recursion.)

Post Reply

Return to “Ask for Help (v1)”