在 PL/SQL 中验证 IBAN
我正在尝试找到一些现成的代码(是的,我的意思是 teh codez
)来验证 PL/SQL 中的 IBAN 帐号。
有人知道一些样品吗?我认为应该有人已经实现了...
谢谢
I'm trying to find some ready-to-use code (yes, I mean teh codez
) to validate an IBAN account number in PL/SQL.
Does anyone know about some samples? I think someone should have already implemented that...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这肯定是没有版权的:
This one is surely not copyrighted:
如果 IBAN 正确则函数返回 1,如果不正确则返回 0
Function returns 1 if IBAN is correct and 0 if it's not correct
快速谷歌搜索就会出现 Alexandre Rodichevski 的实现。它受版权保护,所以我不确定使用它是否合法。不管怎样,在这里找到它。
A swift Googling throws up an implementation by Alexandre Rodichevski. It's copyrighted so I'm not sure whether it's legal to use it. Anyway, find it here.
我的修改
my modification