Wouldn't Hurt To Learn Some JavaScript

The electronic medical records program we use at our clinic is web based and my newest coding project is trying to integrate some of our inhouse programs more directly with the EMR.

At my still novice skill level this is only even approachable due to the framework Apple provides via WKWebKit which makes adding a web browser to a project almost drag and drop easy. Subsequently grabbing the HTML data presented in that browser turned out to be just one more line of code away. Yes, it did take me most of two days to realize grabbing the HTML was what I wanted to do, and then track down that needed line, but 'novice', remember?

Because the data structures and funtions I've been developing over the last couple years are going to be reusable in this project, I've already overcome the most obvious obstacle, but before I can use those extant objects, I have the leg work of redoing all the regular expressions I was using to parse plain text so as to dig the same data out of the HTML version.

In the long run I feel like working from the HTML is going to have some advantages, but it's going to take me a week to redo all these regexes including coding them to handle edge cases and it's a bit mind numbing.

I am getting better at using assertions and look aheads/behinds though, so I'm trying to look at it like weight lifting: focus on the gain rather than the unavoidable pain.