L
L
Lici2015-03-15 14:51:42
Objective-C
Lici, 2015-03-15 14:51:42

How to refer to string character no.. in swift?

Есть переменная-строка.
Как можно обратиться к ее 20-ому, например символу?
someString[20] не выходит)
И еще, как в цикле for c in incomeText {} сделать "шажок на 1 символ вперед"?
Типа:
for c in incomeText {
if (c="#") {переходим на символ вперед, этот пропускаем}
основное действие
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
ManWithBear, 2015-03-15
@Lici

[someString cStringUsingEncoding: NSUTF8StringEncoding];
Ещё есть метод
- (unichar)characterAtIndex:(NSUInteger)index

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question