搜索模式并从文本中选择特定模式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搜索模式并从文本中选择特定模式相关的知识,希望对你有一定的参考价值。
我有这样的文字“running hl loan hdfc 9.5% customer is not interested
”我想从整个字符串中只选择9.5%
。无论是什么字符串,但我想只选择%值。
答案
在SQL-Server中,您可以使用SUBSTRING,PATINDEX和CHARINDEX:
declare @str as varchar(155)
set @str = 'running hl loan hdfc 8569.5% customer is not interested'
select SUBSTRING(@str, PATINDEX('%[0-9]%', @str), CHARINDEX('%', @str) - PATINDEX('%[0-9]%', @str) + 1)
以上是关于搜索模式并从文本中选择特定模式的主要内容,如果未能解决你的问题,请参考以下文章