要在SQLite中查找字符串中的字符,可以使用INSTR
函數。這個函數接受兩個參數,第一個參數是要搜索的字符串,第二個參數是要查找的字符。
例如,要查找字符串'hello world'
中是否包含字符'o'
,可以使用以下查詢:
SELECT INSTR('hello world', 'o');
這將返回字符'o'
在字符串'hello world'
中的位置,如果找不到該字符,則返回0。
如果要查找字符串中的所有特定字符的位置,可以使用循環和INSTR
函數來實現。例如,要查找字符串'hello world'
中所有字符'o'
的位置,可以使用以下查詢:
WITH RECURSIVE positions AS (
SELECT 1 AS position,
INSTR('hello world', 'o') AS index
UNION ALL
SELECT position + index,
INSTR(SUBSTR('hello world', position + index), 'o')
FROM positions
WHERE index > 0
)
SELECT position - 1 AS char_position
FROM positions
WHERE index > 0;
這將返回字符串'hello world'
中所有字符'o'
的位置。