• @Blue_Morpho@lemmy.world
    link
    fedilink
    2
    edit-2
    4 months ago

    Parsing text is the reason regex was created!

    Page 1, Chapter 1, “Mastering Regular Expressions”, Friedl, O’Reilly 1997.

    " Introduction to Regular Expressions

    Here’s the scenario: you’re given the job of checking the pages on a web server for doubled words (such as “this this”), a common problem with documents sub- ject to heavy editing. Your job is to create a solution that will:

    Accept any number of files to check, report each line of each file that has doubled words, highlight (using standard ANSI escape sequences) each dou- bled word, and ensure that the source filename appears with each line in the report.

    Work across lines, even finding situations where a word at the end of one line is repeated at the beginning of the next.

    Find doubled words despite capitalization differences, such as with The the, as well as allow differing amounts of whitespace (spaces, tabs, new- lines, and the like) to lie between the words.

    Find doubled words even when separated by HTML tags. HTML tags are for marking up text on World Wide Web pages, for example, to make a word bold: it is <b>very</b> very important

    That’s certainly a tall order! But, it’s a real problem that needs to be solved. At one point while working on the manuscript for this book. I ran such a tool on what I’d written so far and was surprised at the way numerous doubled words had crept in. There are many programming languages one could use to solve the problem, but one with regular expression support can make the job substantially easier.

    Regular expressions are the key to powerful, flexible, and efficient text processing. Regular expressions themselves, with a general pattern notation almost like a mini programming language, allow you to describe and parse text… With additional sup- port provided by the particular tool being used, regular expressions can add, remove, isolate, and generally fold, spindle, and mutilate all kinds of text and data.

    Chapter 1: Introduction to Regular Expressions "

    • @notabot@lemm.ee
      link
      fedilink
      164 months ago

      There’s a difference between ‘processing’ the text and ‘parsing’ it. The processing described in the section you posted it fine, and you can manage a similar level of processing on HTML. The tricky/impossible bit is parsing the languages. For instance you can’t write a regex that’ll relibly find the subject, object and verb in any english sentence, and you can’t write a regex that’ll break an HTML document down into a hierarchy of tags as regexs don’t support counting depth of recursion, and HTML is irregular anyway, meaning it can’t be reliably parsed with a regular parser.

      • @Blue_Morpho@lemmy.world
        link
        fedilink
        -34 months ago

        For instance you can’t write a regex that’ll relibly find the subject, object and verb in any english sentence

        Identifying parts of speech isn’t a requirement of the word parse. That’s the linguistic definition. In computer science identifying tokens is parsing.

        https://en.m.wikipedia.org/wiki/Parsing

        • @notabot@lemm.ee
          link
          fedilink
          94 months ago

          That’s certainly one level of parsing, and sometimes alk you need, but as the article you posted says, it more usually refers to generating a parse tree. To do that in a natural language isn’t happening with a regex.

          • @uranibaba@lemmy.world
            link
            fedilink
            14 months ago

            Thanks for all the explaining. I always wondered why you can’t parse HTML since I first saw the Stack Overflow post, when you can take any HTML code you find and write an expression to work against said set of data.

            I never understood the word parse to mean understanding and building a structure based on any input.

    • 2xsaiko
      link
      fedilink
      94 months ago

      None of these examples are for parsing English sentences. They parse completely different formal languages. That it’s text is irrelevant, regex usually operates on text.

      You cannot write a regex to give you for example “the subject of an English sentence”, just as you can’t write a regex to give you “the contents of a complete div tag”, because neither of those are regular languages (HTML is context-free, not sure about English, my guess is it would be considered recursively enumerable).

      You can’t even write a regex to just consume <div> repeated exactly n times followed by </div> repeated exactly n times, because that is already a context-free language instead of a regular language, in fact it is the classic example for a minimal context-free language that Wikipedia also uses.

      • @Blue_Morpho@lemmy.world
        link
        fedilink
        -5
        edit-2
        4 months ago

        None of these examples are for parsing English sentences.

        Read it again:

        “At one point while working on the manuscript for this book. I ran such a tool on what I’d written so far”

        The author explicitly stated that he used regex to parse his own book for errors! The example was using regex to parse html.

        You can’t even write a regex to just consume <div> repeated exactly n times followed by </div> repeated exactly n times,

        Just because regex can’t do everything in all cases doesn’t mean it isn’t useful to parse some html and English text.

        It’s like screaming, “You can’t build an Operating system with C because it doesn’t solve the halting problem!”