Tag: regex

  • ChatGPT is a new (and faster) way to do programming!

    ChatGPT is a new (and faster) way to do programming!

    Currently ChatGPT is in a free “initial research preview”. One of its well known use cases at this point is generating software code. I’ve also just used it to write most of this article… Well, actually a future article about cleaning up SRT subtitle files of their metadata faster than I have been by hand…

  • Working with Regular Expressions in C#

    I’ve been working on a program that needs to parse a html file for form data.  So when I was deciding what method to use, a few popped right into my mind. The first being a character by character search through the string.  Parsing through the data and flagging sections that fit the signature of…