Commit 3c22d70e authored by Davis King's avatar Davis King

updated docs

parent 17ef8f04
......@@ -53,6 +53,8 @@
<item>pad</item>
<item>lpad</item>
<item>rpad</item>
<item>split_on_first</item>
<item>split_on_last</item>
<item>left_substr</item>
<item>right_substr</item>
<item>split</item>
......@@ -100,6 +102,30 @@
<!-- ************************************************************************* -->
<component>
<name>split_on_first</name>
<file>dlib/string.h</file>
<spec_file link="true">dlib/string/string_abstract.h</spec_file>
<description>
Breaks a string into two parts. The split point is selected based
on the first occurrence of a delimiter character.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>split_on_last</name>
<file>dlib/string.h</file>
<spec_file link="true">dlib/string/string_abstract.h</spec_file>
<description>
Breaks a string into two parts. The split point is selected based
on the last occurrence of a delimiter character.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>split</name>
<file>dlib/string.h</file>
......
......@@ -1428,6 +1428,8 @@
<term file="parsing.html" name="left_substr" include="dlib/string.h"/>
<term file="parsing.html" name="right_substr" include="dlib/string.h"/>
<term file="parsing.html" name="split" include="dlib/string.h"/>
<term file="parsing.html" name="split_on_first" include="dlib/string.h"/>
<term file="parsing.html" name="split_on_last" include="dlib/string.h"/>
<term file="parsing.html" name="unichar" include="dlib/unicode.h"/>
<term file="parsing.html" name="ustring" include="dlib/unicode.h"/>
<term file="parsing.html" name="convert_utf8_to_utf32" include="dlib/unicode.h"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment