- Регистрация
- 24.01.2011
- Сообщения
- 119
- Благодарностей
- 3
- Баллы
- 0
I would like to split a string and know the total number of substrings.
This can be done in Javascript using:
Is there an equivalent to this using the built in macros?
Thanks!
This can be done in Javascript using:
PHP:
Substrings = string.split(',');
NumberOfSubstrings = Substrings.length;
Thanks!