Intel® Integrated Performance Primitives (Intel® IPP) Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-60256170-0D8C-4174-9E72-BA3178523E78
Visible to Intel only — GUID: GUID-60256170-0D8C-4174-9E72-BA3178523E78
String Manipulation
This section describes the Intel IPP functions that perform operations with strings. Intel IPP string functions for do not consider zero as the end of the string, but require that the length of the string (number of elements) be specified explicitly. Overlapping of the strings is not supported (for not in-place operations). Intel IPP string functions operate with two data types, Ipp8u and Ipp16u.
- Find, FindRev
DEPRECATED. Look for the first occurrence of the substring matching the specified string. - FindC, FindRevC
DEPRECATED. Look for the first occurrence of the specified element within the source string. - FindCAny, FindRevCAny
DEPRECATED. Looks for the first occurrence of any element of the specified array within the source string. - Insert
DEPRECATED. Inserts a string into another string. - Remove
DEPRECATED. Removes a specified number of elements from the string. - Compare
DEPRECATED. Compares two strings of the fixed length. - CompareIgnoreCase, CompareIgnoreCaseLatin
DEPRECATED. Compare two strings of the fixed length ignoring case. - Equal
DEPRECATED. Compares two string of the fixed length for equality. - TrimC
DEPRECATED. Deletes all occurrences of a specified symbol in the beginning and in the end of the string. - TrimCAny, TrimStartCAny, TrimEndCAny
DEPRECATED. Delete all occurrences of any of the specified symbols in the beginning and in the end of the source string. - ReplaceC
DEPRECATED. Replaces all occurrences of a specified element in the source string with another element. - Uppercase, UppercaseLatin
DEPRECATED. Convert alphabetic characters of a string to all uppercase symbols. - Lowercase, LowercaseLatin
DEPRECATED. Converts alphabetic characters of a string to all lowercase symbols. - Hash
DEPRECATED. Calculates the hash value for the string. - Concat
DEPRECATED. Concatenates several strings together. - ConcatC
DEPRECATED. Concatenates several strings together and inserts symbol delimiters between them. - SplitC
DEPRECATED. Splits source string into separate parts.