我有一个带有 $ 符号的属性字符串,就像这样"价格1 $ 25 \ n价格2 $ \ n价格3 $"我想查找" $"
的所有范围SELECT count(*)
FROM List_declarations
WHERE Id_antenne IN (
SELECT id
FROM Service
WHERE id_direction IN (
SELECT id_dr
FROM affectation_service_dr
WHERE id_service = 15
)
)
我需要为" $"。
设置不同的颜色我知道如何在属性字符串中查找范围。
let attrString = NSMutableAttributedString(string: " price 1 $ 25 \n price 2 $\n price 3 $")
let ranges = // all ranges for $ sign
我想知道如何在给定的属性字符串中找到" $" 符号范围的数组?