parse
- Синтаксис
-
native parse(const text[], ... );
Переменная | Описание |
---|---|
text |
String to parse. |
... |
Variable number of format parameters. |
- Описание
- Gets parameters from text.
- Пометка
-
Example: to split text: "^"This is^" the best year", call function like this: parse(text,arg1,len1,arg2,len2,arg3,len3,arg4,len4) and you will get: "This is", "the", "best", "year" Function returns number of parsed parameters.
- Возвращает
- Number of parsed parameters.