Hãy chia nhỏ thành 2 bước:
- loại bỏ mọi thứ cho đến đầu số (ở đây tôi giả định rằng tối thiểu 3 số kỹ thuật số)
- sau đó đưa mọi thứ lên đến chữ số không phải số tiếp theo
Bạn sẽ cần một CASE cho LEFT là số ở cuối vì PATINDEX sẽ trả về 0
DECLARE @MyTable TABLE (bigstring varchar(200))
INSERT @MyTable VALUES ('F:\MassHunter\DATA\6897_Pan_1\QuantResults\6897_Pan_1.batch.bin')
INSERT @MyTable VALUES ('F:\MassHunter\DATA\6897_Pan_1\QuantResults\6897_Pan_1.batch.bin')
INSERT @MyTable VALUES ('10914_Excel Short Summary.xls')
SELECT --assumes number not at end of string
LEFT(startOf, PATINDEX('%[^0-9]%', startof)-1)
FROM
(
SELECT --assumed 3 digits minimum
SUBSTRING(bigstring, PATINDEX('%[0-9][0-9][0-9]%', bigstring), 8000) AS startOf
FROM
@MyTable
) foo