标签: sql-server string tsql character indexof
如何使用T-SQL找到字符串中第一个数字字符的索引?
答案 0 :(得分:6)
我使用PATINDEX:
PATINDEX
select patindex('%[0-9]%', 'My1String')
答案 1 :(得分:3)
select PATINDEX('%[0-9]%', 'your_12345_string')
见the doc SQLFiddle