2

如何使用 T-SQL 找到字符串中第一个数字字符的索引?

4

2 回答 2

6

我使用PATINDEX

select patindex('%[0-9]%', 'My1String')
于 2012-07-12T19:36:32.510 回答
3
select PATINDEX('%[0-9]%', 'your_12345_string')

请参阅文档
SQLFiddle

于 2012-07-12T19:36:58.160 回答