Y
Size: a a a
YV
US
ВР
ВР
М
smth = "Привет"
if
let index = (smth.range(of: "в")?.upperBound) {
let afterEqualsTo = String(smth.suffix(from: index))
print(afterEqualsTo)
}
if
let index = (smth.range(of: "в")?.lowerBound) {
let afterEqualsToContainingSymbol = String(smth.suffix(from: index))
print(afterEqualsToContainingSymbol)
}
Gᅠ
М