Merge pull request #170 from hatarist/reference_arr_concat

Added arrayStringConcat description to the reference
This commit is contained in:
alexey-milovidov 2016-11-09 20:46:10 +04:00 committed by GitHub
commit bb073c6977
2 changed files with 10 additions and 0 deletions

View File

@ -5050,6 +5050,11 @@ Returns an array of selected substrings. Empty substrings may be selected if the
===splitByString(separator, s)===
- The same as above, but it uses a string of multiple characters as the separator. The string must be non-empty.
===arrayStringConcat(arr[, separator])===
- Concatenates strings from the array elements, using 'separator' as the separator.
'separator' is a string constant, an optional parameter. By default it is an empty string.
Returns a string.
===alphaTokens(s)===
- Selects substrings of consecutive bytes from the range a-z and A-Z.
Returns an array of selected substrings.

View File

@ -5135,6 +5135,11 @@ separator должен быть константной строкой из ро
===splitByString(separator, s)===
- то же самое, но использует строку из нескольких символов в качестве разделителя. Строка должна быть непустой.
===arrayStringConcat(arr[, separator])===
- склеивает строки, перечисленные в массиве, с разделителем separator.
separator - необязательный параметр, константная строка, по умолчанию равен пустой строке.
Возвращается строка.
===alphaTokens(s)===
- выделяет подстроки из подряд идущих байт из диапазонов a-z и A-Z.
Возвращается массив выделенных подстрок.