From 20cc39d443d1a2c364b0fb778c7813ae7b5a1dd6 Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Tue, 11 Dec 2018 17:42:39 +0100 Subject: Add "since" attributes in xml for new functions and modules introduced after OTP_R13B03. --- lib/stdlib/doc/src/string.xml | 66 +++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 33 deletions(-) (limited to 'lib/stdlib/doc/src/string.xml') diff --git a/lib/stdlib/doc/src/string.xml b/lib/stdlib/doc/src/string.xml index 3348464eba..d3b0175d69 100644 --- a/lib/stdlib/doc/src/string.xml +++ b/lib/stdlib/doc/src/string.xml @@ -130,7 +130,7 @@ - + Convert a string to a comparable string.

@@ -147,7 +147,7 @@ - + Remove trailing end of line control characters.

@@ -165,8 +165,8 @@ - - + + Test string equality.

@@ -201,8 +201,8 @@ true - - + + Find start of substring.

@@ -230,7 +230,7 @@ nomatch - + Check if the string is empty.

Returns true if String is the @@ -245,7 +245,7 @@ true - + Calculate length of the string.

@@ -261,7 +261,7 @@ true - + Split string into lexemes.

@@ -287,7 +287,7 @@ true - + Convert a string to lowercase

@@ -306,7 +306,7 @@ true - + Pick the first codepoint.

@@ -323,7 +323,7 @@ true - + Pick the first grapheme cluster.

@@ -340,7 +340,7 @@ true - + Pick the nth lexeme.

Returns lexeme number N in @@ -355,9 +355,9 @@ true - - - + + + Pad a string to given length.

@@ -381,7 +381,7 @@ true - + Remove prefix from string.

@@ -400,8 +400,8 @@ nomatch - - + + Replace a pattern in string.

@@ -423,7 +423,7 @@ nomatch - + Reverses a string

@@ -439,8 +439,8 @@ ÖÄÅ - - + + Extract a part of string

Returns a substring of String of @@ -459,8 +459,8 @@ ÖÄÅ - - + + Split a string into substrings.

@@ -482,9 +482,9 @@ ÖÄÅ - - - + + + Take leading or trailing parts.

Takes characters from String as long as @@ -508,7 +508,7 @@ ÖÄÅ - + Convert a string to titlecase.

@@ -566,7 +566,7 @@ ÖÄÅ - + Convert a string to a list of grapheme clusters.

@@ -582,9 +582,9 @@ ÖÄÅ - - - + + + Trim leading or trailing, or both, characters.

@@ -616,7 +616,7 @@ ÖÄÅ - + Convert a string to uppercase.

-- cgit v1.2.3 From 50f64c60b87e8d03fedc3f9f4e655aff8ca9f16c Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Wed, 12 Dec 2018 19:32:24 +0100 Subject: Add empty 'since' attribute for old modules and functions --- lib/stdlib/doc/src/string.xml | 76 +++++++++++++++++++++---------------------- 1 file changed, 38 insertions(+), 38 deletions(-) (limited to 'lib/stdlib/doc/src/string.xml') diff --git a/lib/stdlib/doc/src/string.xml b/lib/stdlib/doc/src/string.xml index d3b0175d69..d102191a57 100644 --- a/lib/stdlib/doc/src/string.xml +++ b/lib/stdlib/doc/src/string.xml @@ -32,7 +32,7 @@ A string.xml - string + string String processing functions.

This module provides functions for string processing.

@@ -164,7 +164,7 @@
- + Test string equality. @@ -522,7 +522,7 @@ ÖÄÅ - + Return a float whose text representation is the integers (ASCII values) of a string. @@ -544,7 +544,7 @@ ÖÄÅ - + Return an integer whose text representation is the integers (ASCII values) of a string. @@ -649,8 +649,8 @@ ÖÄÅ - - + + Center a string.

Returns a string, where String is centered in the @@ -664,8 +664,8 @@ ÖÄÅ - - + + Return a string consisting of numbers of characters.

Returns a string consisting of Number characters @@ -678,7 +678,7 @@ ÖÄÅ - + Return the index of the first occurrence of a character in a string. @@ -692,7 +692,7 @@ ÖÄÅ - + Concatenate two strings.

Concatenates String1 and @@ -712,7 +712,7 @@ ÖÄÅ - + Copy a string.

Returns a string containing String repeated @@ -724,7 +724,7 @@ ÖÄÅ - + Span characters at start of a string.

Returns the length of the maximum initial segment of @@ -741,7 +741,7 @@ ÖÄÅ - + Join a list of strings with separator.

Returns a string with the elements of StringList @@ -757,8 +757,8 @@ ÖÄÅ - - + + Adjust left end of a string.

Returns String with the length adjusted in @@ -778,7 +778,7 @@ ÖÄÅ - + Return the length of a string.

Returns the number of characters in String.

@@ -789,7 +789,7 @@ ÖÄÅ
- + Return the index of the last occurrence of a character in a string. @@ -803,8 +803,8 @@ ÖÄÅ - - + + Adjust right end of a string.

Returns String with the length adjusted in @@ -823,7 +823,7 @@ ÖÄÅ - + Find the index of a substring.

Returns the position where the last occurrence of @@ -841,7 +841,7 @@ ÖÄÅ - + Span characters at start of a string.

Returns the length of the maximum initial segment of @@ -858,7 +858,7 @@ ÖÄÅ - + Find the index of a substring.

Returns the position where the first occurrence of @@ -876,9 +876,9 @@ ÖÄÅ - - - + + + Strip leading or trailing characters.

Returns a string, where leading or trailing, or both, blanks or a @@ -898,8 +898,8 @@ ÖÄÅ - - + + Extract a substring.

Returns a substring of String, starting at @@ -916,8 +916,8 @@ sub_string("Hello World", 4, 8). - - + + Return a substring of a string.

Returns a substring of String, starting at @@ -934,8 +934,8 @@ sub_string("Hello World", 4, 8). - - + + Extract subword.

Returns the word in position Number of @@ -952,10 +952,10 @@ sub_string("Hello World", 4, 8). - - - - + + + + Convert case of string (ISO/IEC 8859-1). @@ -974,7 +974,7 @@ sub_string("Hello World", 4, 8). - + Split string into tokens.

Returns a list of tokens in String, separated @@ -994,8 +994,8 @@ sub_string("Hello World", 4, 8). - - + + Count blank separated words.

Returns the number of words in String, separated -- cgit v1.2.3