一堆文本中想去找一些特定字符串,需要用到正则,正则之前看过一些又忘了很多,然后又去查正则基础知识,觉得太难又放弃,打开某个网站发贴正则求助,是不是很多人都有这样的感觉?
写正则难,看懂别人写的正则也难,忽然就萌生了能不能用编程语言或者自然语言自动生成正则表达式的想法,比如写出下面的代码:
var str;
if(var.hasPrefix(start) , var.hasSuffix(end))
生成 ^start.*end$ 这样的正则表达式 这个当然是太简单了
搜了一下,发现别人还真有做生成正则表达式的东西,然后就搜出了这么一大堆东西,分享一下吧😂
1). http://www.txt2re.com/index.php3
https://coolshell.cn/articles/1830.html 这里做了介绍,然而没看懂
这是一篇关于自动生成正则表达式的理论实践文章
3). RE-Build:用自然语言去编写正则表达式 - luoyjx - 搞起博客
4). VerbalExpressions/PHPVerbalExpressions: PHP Regular expressions made easy
JS 的:VerbalExpressions/JSVerbalExpressions: JavaScript Regular expressions made easy
各种语言都有,能生成正则表达式,感觉规则不全 例子:
// Create an example of how to test for correctly formed URLs
var tester = VerEx()
.startOfLine()
.then('http')
.maybe('s')
.then('://')
.maybe('www.')
.anythingBut(' ')
.endOfLine();
// Create an example URL
var testMe = 'https://www.google.com';
// Use RegExp object's native test() function
if (tester.test(testMe)) {
alert('We have a correct URL'); // This output will fire
} else {
alert('The URL is incorrect');
}
console.log(tester); // Outputs the actual expression used: /^( http)(s)?(\:\/\/)(www\.)?([^\ ]*)$/
5).mbasso/natural-regex: Create regex from natural language
有 Wiki:How to Use · mbasso/natural-regex Wiki 这个看起来规则很全,但是不能生成正则表达式
例子:
import NaturalRegex from 'natural-regex';
// validate string
const dateAndEmail = NaturalRegex.from('starts with dd/MM/yyyy, space, minus, space and then email, end.');
dateAndEmail.test('06/07/2016 - foo@bar.com'); // this evaluates true
dateAndEmail.test('Foo Bar foo@bar'); // this evaluates false
6). 其它的
自己动手写一个简单正则表达式解析器(待续,未完成)-极客学院
如果能写自然语言生成正则表达式,又能输入正则表达式生成自然语言,正则的学习门槛会降很低吧
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.