创建正则表达式来添加两个数字

发布于 2024-11-26 11:29:57 字数 194 浏览 1 评论 0 原文

这个问题纯粹是为了好玩。正则表达式是否强大到足以将任意两个正整数相加?我的意思是用 a+b 的数值替换字符串 a+b

我意识到这取决于我们为数字选择的表示法。当然,如果我们将它们写为计数标记,则正则表达式很容易,只需删除加号即可。用二进制写的数字怎么样?有什么办法可以做到这一点,或者有令人信服的理由来解释为什么这是不可能的吗?

This question is purely for fun. Are regular expressions powerful enough to actually add any two positive integers? By that I mean replacing the string a+b with the numerical value of a+b.

I realize this depends on the notation we choose for numbers. Certainly if we write them as tally marks the regex is easy, just remove the plus symbol. How about numbers written in binary? Any way to do it, or convincing reasons why it is impossible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞎闹 2024-12-03 11:29:57

因为这是为了好玩并了解正则表达式的力量:

使用正则表达式查找素数 - http://www.noulakaz.net/weblog/2007/03/18/a-regular-expression-to-check-for-prime-numbers/

Since this is for fun and to see power of regex:

Find prime numbers using regex - http://www.noulakaz.net/weblog/2007/03/18/a-regular-expression-to-check-for-prime-numbers/

裂开嘴轻声笑有多痛 2024-12-03 11:29:57

如果我们谈论基本的,我会说不,因为正则表达式语言不是图灵完备的,可能具有强大的扩展(例如递归替换或类似工具)。

I would say no if we're talking about basic ones, since regex language is not Turing complete, maybe with powerful exsensions (eg recursive substitutions or similar tools)..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文