使用 SQL Server 2012 提取字符串
我有一个形式为“
<div>#FIRST#12345#</div>
如何在 SQL Server 2012 中使用 T-SQL 从此字符串中提取数字部分?” 形式的字符串。请注意该数字的长度是可变的
I have a string in the form of
<div>#FIRST#12345#</div>
How do I extract the number part from this string using T-SQL in SQL Server 2012? Note the number has variable length
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅使用 t-sql 字符串函数,您可以尝试:
输出:
注意,这不会处理任何“边缘”情况,并假设数据如所描述的那样。
Using just t-sql string functions you can try:
Output:
Caveat, this doesn't handle any "edge" cases and assumes data is as described.
由于缺少最小可重现示例,所以草率行事。
假设它是XML数据类型列。
SQL
输出
Shooting from the hip due to a missing minimal reproducible example.
Assuming that it is XML data type column.
SQL
Output