I'm trying to do some web scraping in Julia and have downloaded a web page as a UTF8String via Requests.jl. Now I need to extract some data from this, but unfortunately the structure of the page is a bit messy, and it seems the only way to get what I need is to extract a substring between two other substrings. The structure would look something like
"string1"[10-15 characters]"string2"[string I need to extract]"string3" Do I need to use regular expressions for this or is there an easier option in Julia to match these sorts of more complex string patterns? Thanks!
