Hacker News new | ask | show | jobs
by PenguinRevolver 1440 days ago
Tried RegEx → English:

    \"object\": \[(.*?)\]
    ----
    The regular expression matches a string that contains "object": followed by a space and an open bracket, then any characters, then a close bracket. The characters between the open and close bracket are captured in a group.
Pretty cool.