Regex.ai is an AI-powered tool that generates regular expressions. It can accurately generate regular expressions that match specific patterns in text with precision. Whether you're a novice or an expert, Regex.ai's intuitive interface makes it easy to input sample text and generate complex regular expressions quickly and efficiently. Overall, Regex.ai is a game-changer that will save you time and streamline your workflow.
[+] [-] AdieuToLogic|3 years ago|reply
Or, just write regular expressions?
> ... Regex.ai's intuitive interface makes it easy to input sample text and generate complex regular expressions quickly and efficiently.
See: https://www.ibm.com/topics/overfitting
Inputting the sample text:
And highlighting the first "baz" produced patterns which all had "[A-Z][a-z]*@libertylabs\\.ai" included, assumedly due to the default inclusions.Removing those and highlighting the second "baz" resulted "<Agent B>" as the results in one case.
There is no explanation of any patterns generated. If a person is to use one of the generated patterns and Regex.ai is supposed to "save you time and streamline your workflow", no matter "[w]hether you're a novice or an expert", then some form of verification and/or explanation must exist.
Otherwise, a person must know how to formulate regular expressions in order to determine which, if any, of the presented options are applicable. And if a person knows how to formulate regular expressions, then why would they use Regex.ai?
[+] [-] anileated|3 years ago|reply
Well guess what, LLM-generated code is someone else’s code: an amalgamation derived from many peoples’ code. Except those people are ‘helpfully’ “abstracted away” from you by the middleman, so you can’t know their original intents and choices. What’s worse, it’s someone else’s code that will be treated as your code—unlike working with a legacy system that everyone knows was written by some guy, in this case any bugs will be squarely on you.
[+] [-] regexLL|3 years ago|reply
[+] [-] barbariangrunge|3 years ago|reply
[+] [-] jameshart|3 years ago|reply
Try giving it examples where the data provides context cues.
[+] [-] qwertox|3 years ago|reply
\b(foo|bar|baz)\b
\w(foo|bar|baz)\w
\bbaz\b
[fF][oO][oO]|[Bb][Aa][Rr]|[Bb][Aa][Zz]
It only lacks a dice button which randomly selects the "correct" answer.
[+] [-] 6510|3 years ago|reply
[+] [-] qsort|3 years ago|reply
https://arts.units.it/retrieve/handle/11368/2758954/57751/20...
https://arxiv.org/pdf/1908.03316
https://cs.stanford.edu/~minalee/pdf/gpce2016-alpharegex.pdf
[+] [-] __lm__|3 years ago|reply
It uses genetic programming to build the regular expression.
[+] [-] hackernewds|3 years ago|reply
[+] [-] florianfmmartin|3 years ago|reply
For complex inputs, use actual peg parsers : https://docs.rs/peg/latest/peg/
For simplet inputs, express your intent with readable methods using a lib : https://github.com/sgreben/regex-builder/ & https://github.com/francisrstokes/super-expressive
[+] [-] b5n|3 years ago|reply
There are certainly cases where different parsing methods/grammars are a better fit, but regex shines in many places.
[+] [-] column|3 years ago|reply
[+] [-] thunky|3 years ago|reply
Would you feel better if it generated a regex-builder expression instead of a regex?
Even if regex-builder generates a regex under the hood?
In any case, the regex itself is only an implementation detail.
[+] [-] textread|3 years ago|reply
There is an excellent HN comment that provides more reading material around regex generation:- https://news.ycombinator.com/item?id=32037544
[+] [-] elif|3 years ago|reply
[+] [-] jedberg|3 years ago|reply
It looks like no one did that here. Even using the sample data provided, if you highlight a few of the addresses, it can't find the rest of them, mainly because it generates a regex with ST/AVE/LN in it, missing all the ones with RD. And if you add an RD sample, it just adds that to the list.
There's lots of great innovation coming with LLMs, but people are forgetting their "AI basics" when it comes to verifying them.
[+] [-] pyuser583|3 years ago|reply
We tell AI what we want. AI produces a hyper-specific, but barely comprehensible result. We look over the result to make sure it’s all good.
Then execute.
[+] [-] yawnxyz|3 years ago|reply
Except... it made ONE ERROR that I just spent two hours tracking down and fixing in my JSON file and now in the Stripe dash. (I coincidentally found the error using ChatGPT lol).
It's probably still faster and less error-prone than I could have done it manually. But it's still error-prone...
[+] [-] globalise83|3 years ago|reply
[+] [-] tomashubelbauer|3 years ago|reply
[+] [-] gbro3n|3 years ago|reply
"PostgresSql": "Host=localhost;User ID=postgres;Password=xxxx;Database=test;Application Name=Test1234,Port=35432;Pooling=false;"
I selected User ID=, Host=, Application Name=, Password=
The results were pretty useless, using the literal inputs as pattern matches:
(User ID|Host|Application Name|Password)=([^;]) (User ID|Host|Application Name|Password)=([\w]) (User ID=)|(Host=)|(Application Name=)|(Password=) ([Uu]ser [Ii][Dd]=)|([Hh]ost=)|([Aa]pplication [Nn]ame=)|([Pp]assword=)
The following prompt given to Chat GPT 4 however:
> Write a regular expression to extract the property names from this PostgreSQL connection string: "PostgresSql": "Host=localhost;User ID=postgres;Password=xxxx;Database=test;Application Name=Test1234,Port=35432;Pooling=false;"
Yields the response with an explanation:
(?<=[^\\w])([A-Za-z ]+)(?==)
"This regular expression will match any sequence of alphabetic characters (upper or lower case) that are followed by an equal sign (=). The negative lookbehind (?<=[^\\w]) ensures that the property name is not preceded by another word character."
A quick test on regex101.com shows this works perfectly.
Sorry, don't like to be overly critical. Someone has attempted to solve a common problem for developers, but LLMs are going to blow applications like this away. And I think that Chat GPT at version 4 has become a truly useful tool.
I was interested to test this since I'd been writing a regular expression earlier in the day for a similar usecase, which I've written up here: https://journals.appsoftware.com/public/76/227/4221/blog/sof...
[+] [-] _andrei_|3 years ago|reply
[+] [-] majastro|3 years ago|reply
[+] [-] bastardoperator|3 years ago|reply
[+] [-] waldenyan20|3 years ago|reply
[+] [-] ouraf|3 years ago|reply
At least for me, what would make this a killer app would be the ability of reading a document or pdf or big text dump and 1: identify "possible fields" (first name, date of birth), "probable fields" (middle name or other fields that are part of data set but doesn't appear in every line) and "probable junk data" (page numbers, page headers, useless pdf padding"
2: allow selection or tuning of these fields to generate regex to catch or remove only the data related to the parsed fields.
I THINK there's something done with pandas (pandoc?)that can help tearing a document apart and getting fields or basic doc structure, but AI would need to take it from here and present it in a clear, concise and optionally explained way so a busy office worker could just copy the regex filter in a spreadsheet formula or program function
[+] [-] libraryatnight|3 years ago|reply
Struck me as funny when we have another thread going about people pasting company data into ChatGPT and here we have a regex AI with an example that looks like it's encouraging you to trust it with helping you regex through your PII, just paste it in the box and highlight what you need lol (not saying that's the intent, just that's what less savvy users may do)
Company site does not inspire much confidence: https://libertylabs.ai/
Light on details, heavy on philosophers, trend setters, idea banks, and radicals that make me worried I'm dealing with opportunists taking swings at monetizing a bunch of .ai domains. Especially the weird cinematic banner.
[+] [-] jen729w|3 years ago|reply
Ah c'mon. It's a bunch of kids -- which I say with envy not malice -- giving something new a go. Let 'em at it!
The products will speak for themselves. This one, meh, not so much. But we should be encouraging not disparaging.
[+] [-] danmur|3 years ago|reply
[+] [-] rpigab|3 years ago|reply
Also, I'm not sure what underlying tech is used, and the only explanations on the tool seems to be a Youtube video, so I didn't look further. I'd like to know more about how it's made, if that's possible and something the author would be ok to share.
[+] [-] benrutter|3 years ago|reply
I've seen at least 2 projects in the last 6 months using LLMs to generate bash code which seems like a similar solve. LLMs are super cool, but there's a massive advantage to actually understanding what you're code does, and LLM generated regex, bash, assembly etc loses that.
[+] [-] cutler|3 years ago|reply
[+] [-] politician|3 years ago|reply
https://blog.codinghorror.com/regular-expressions-now-you-ha...
[+] [-] bongobingo1|3 years ago|reply
[+] [-] AdieuToLogic|3 years ago|reply
https://xkcd.com/208/
[+] [-] regexLL|3 years ago|reply
We will be deploying regex.ai v1.1 on the first week of April , with descriptions and 5x improved performance. Stay tuned!
[+] [-] alexnew|3 years ago|reply
[+] [-] laserbeam|3 years ago|reply
[+] [-] ekiauhce|3 years ago|reply
One I familiar with is to match datetime interval, when you need to narrow down log rows for a particular time range.
So I built a tool just for it :) https://github.com/ekiauhce/interval-to-regexp