检查字符串是否包含前导字母
如何检查我的字符串是否包含前导字母?在 C# 中很容易,但我在 SQL 中这样做。有办法检查吗?如果是这样,我该如何删除它?
前任: @MyString = 'A1234'
更新的字符串 = '1234'
How can I check if my string contains leading letters? In C# is easy, but I am doing this in SQL. Is there a way to check this? If so, how can I remove it?
EX:
@MyString = 'A1234'
Updated string = '1234'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用:
Use:
对于一个前导字母,您可以执行以下操作:
您可以重复该操作,直到不再有字母为止。
For one leading letter, you can do:
You can repeat that until there are no more letters.
尝试将 SUBSTRING 包裹在 IF 中...如果您想检查
或只是
Try wrapping SUBSTRING in an IF...if you want to check
or just