Текстовые functions

[ ] indicates optional parameters

ДЛСТР(текст)
ЗАМЕНИТЬ(старый_текст, нач_ном, число_литер, новый_текст)
ЗНАЧЕН(текст)
КОДСИМВ(текст)
ЛЕВСИМВ(текст, [число_литер])
НАЙТИ(найти_текст, внутр_текст, [нач_ном])
ПЕЧСИМВ(текст)
ПОВТОР(текст, число_повторений)
ПОДСТАВИТЬ(текст, стар_текст, нов_текст, [ном_вхождения])
ПОИСК(найти_текст, внутр_текст, [нач_ном])
ПРАВСИМВ(текст, [число_литер])
ПРОПИСН(текст)
ПРОПНАЧ(текст)
ПСТР(текст, нач_ном, число_литер)
РУБЛЬ(число, [дес_цифры])
СЖПРОБЕЛЫ(текст)
СИМВОЛ(число)
СОВПАД(текст1, текст2)
СТРОЧН(текст)
СЦЕПИТЬ(текст1, [текст2, ...])
Т(значение)
ТЕКСТ(значение, строка_формат)
ФИКСИРОВАННЫЙ(число, [дес_цифры], [без_запятых])


Текстовые functions

ДЛСТР(текст)

Returns the length of the input string.

текстThe string of which you want the length.


ЗАМЕНИТЬ(старый_текст, нач_ном, число_литер, новый_текст)

Returns a string which is the input string with a specified portion replaced.

старый_текстThe string you want to convert.
нач_номThe starting position of the text to be removed.
число_литерThe number of characters to be removed.
новый_текстThe text to be inserted into the string.


ЗНАЧЕН(текст)

Returns a number which corresponds to the value in the input string. You should not need to use this function, as values are automatically converted from text to numeric when required in formulas.

текстThe string that you want to convert to a number.


КОДСИМВ(текст)

Returns the position in the character set of the first character in the string.

текстThe character of which you want the character code.


ЛЕВСИМВ(текст, [число_литер])

Returns a string consisting of the specified number of characters from the beginning of the input string.

текстThe string of which you want the beginning.
число_литерThe number of characters to extract from the string. If this parameter is omitted it defaults to 1.


НАЙТИ(найти_текст, внутр_текст, [нач_ном])

Returns a number corresponding to the position of one text string within another (case-sensitive).

найти_текстThe text you want to find.
внутр_текстThe text to be searched.
нач_номThe position at which to start searching. If this parameter is omitted it defaults to 1.


ПЕЧСИМВ(текст)

Returns a string corresponding to the input string with any unprintable characters removed.

текстThe text from which you want to remove unprintable characters.


ПОВТОР(текст, число_повторений)

Returns a string which is the input string repeated a specified number of times.

текстThe string you want to repeat.
число_повторенийThe number of times to repeat the string.


ПОДСТАВИТЬ(текст, стар_текст, нов_текст, [ном_вхождения])

Returns a string which is the input string with specified text replaced.

текстThe string you want to convert.
стар_текстThe string to be removed from the original text.
нов_текстThe string to be inserted in the original text.
ном_вхожденияSpecifies which occurrence of old_text is to be replaced. If this parameter is omitted then all occurrences are replaced.


ПОИСК(найти_текст, внутр_текст, [нач_ном])

Returns a number corresponding to the position of one text string within another (not case-sensitive).

найти_текстThe text you want to find.
внутр_текстThe text to be searched.
нач_номThe position at which to start searching. If this parameter is omitted it defaults to 1.


ПРАВСИМВ(текст, [число_литер])

Returns a string consisting of the specified number of characters from the end of the input string.

текстThe string of which you want the end.
число_литерThe number of characters to extract from the string. If this parameter is omitted it defaults to 1.


ПРОПИСН(текст)

Returns a string which is the input string with all of the characters converted to upper case.

текстThe string that you want to convert.


ПРОПНАЧ(текст)

Returns a string which is the input string with the first letter of each word converted to upper case and all of the other characters converted to lower case.

текстThe string you want to convert.


ПСТР(текст, нач_ном, число_литер)

Returns a string consisting of the specified number of characters from the specified position of the input string.

текстThe string of which you want the extract.
нач_номThe starting position of characters to extract from the string.
число_литерThe number of characters to extract from the string.


РУБЛЬ(число, [дес_цифры])

Returns a string consisting of the input number rounded to the specified number of decimal places and converted to currency format.

числоThe amount that you want to format.
дес_цифрыThe number of decimal places required. If this parameter is omitted it defaults to 2.


СЖПРОБЕЛЫ(текст)

Returns a string consisting of the input string with any extra spaces removed.

текстThe string that you want to format.


СИМВОЛ(число)

Returns the character corresponding to the specified position in the character set.

числоThe number of the character that you want.


СОВПАД(текст1, текст2)

Returns ИСТИНА if the input strings are exactly the same, otherwise ЛОЖЬ.

текст1The first string to be compared.
текст2The second string to be compared.


СТРОЧН(текст)

Returns a string which is the input string with all of the characters converted to lower case.

текстThe string you want to convert.


СЦЕПИТЬ(текст1, [текст2, ...])

Returns a string consisting of the input strings concatenated together.

текст1, ...The strings that you want to concatenate.


Т(значение)

Returns a string which is the input value if it is text, otherwise an empty string.

значениеThe value you want if it is a string.


ТЕКСТ(значение, строка_формат)

Returns a string consisting of the input number formatted using the specified format string.

значениеThe number that you want to format.
строка_форматThe format string to use.


ФИКСИРОВАННЫЙ(число, [дес_цифры], [без_запятых])

Returns a string consisting of the input number rounded to the specified number of decimal places.

числоThe number that you want to format.
дес_цифрыThe number of decimal places required. If this parameter is omitted it defaults to 2.
без_запятыхSpecifies whether to suppress the thousands separator in the formatted number. The possible values are:
ЛОЖЬThe thousands separator is used.
ИСТИНАThe thousands separator is not used.
If this parameter is omitted it defaults to ЛОЖЬ.