如何从oracle中的varchar 2中获取数字?
我有变量 l_string varchar 2(100)。
字符串的值为l_string='L000EW45UY678IOP'
。
我想从这个字符串中获取数字,例如
00045678
请告诉我如何获得上述字符串结果。
I have variable l_string varchar 2(100).
The value of string is l_string='L000EW45UY678IOP'
.
I want to get number from this string like
00045678
Please tell me how to get the above string result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
谷歌翻译功能。
它可以让您将字母字符替换为空,而留下数字。
Google the TRANSLATE function.
It will let you replace the alphabetic characters by nothing, leaving the digits behind.
试试这个:
try this: