JUCE
|
A collection of functions for manipulating characters and character strings. More...
Classes | |
struct | HexParser |
Parses a character string, to read a hexadecimal value. More... | |
Static Public Member Functions | |
static juce_wchar | toUpperCase (juce_wchar character) noexcept |
Converts a character to upper-case. More... | |
static juce_wchar | toLowerCase (juce_wchar character) noexcept |
Converts a character to lower-case. More... | |
static bool | isUpperCase (juce_wchar character) noexcept |
Checks whether a unicode character is upper-case. More... | |
static bool | isLowerCase (juce_wchar character) noexcept |
Checks whether a unicode character is lower-case. More... | |
static bool | isWhitespace (char character) noexcept |
Checks whether a character is whitespace. More... | |
static bool | isWhitespace (juce_wchar character) noexcept |
Checks whether a character is whitespace. More... | |
static bool | isDigit (char character) noexcept |
Checks whether a character is a digit. More... | |
static bool | isDigit (juce_wchar character) noexcept |
Checks whether a character is a digit. More... | |
static bool | isLetter (char character) noexcept |
Checks whether a character is alphabetic. More... | |
static bool | isLetter (juce_wchar character) noexcept |
Checks whether a character is alphabetic. More... | |
static bool | isLetterOrDigit (char character) noexcept |
Checks whether a character is alphabetic or numeric. More... | |
static bool | isLetterOrDigit (juce_wchar character) noexcept |
Checks whether a character is alphabetic or numeric. More... | |
static bool | isPrintable (char character) noexcept |
Checks whether a character is a printable character, i.e. More... | |
static bool | isPrintable (juce_wchar character) noexcept |
Checks whether a character is a printable character, i.e. More... | |
static int | getHexDigitValue (juce_wchar digit) noexcept |
Returns 0 to 16 for '0' to 'F", or -1 for characters that aren't a legal hex digit. More... | |
static juce_wchar | getUnicodeCharFromWindows1252Codepage (uint8 windows1252Char) noexcept |
Converts a byte of Windows 1252 codepage to unicode. More... | |
template<typename CharPointerType > | |
static double | readDoubleValue (CharPointerType &text) noexcept |
Parses a character string to read a floating-point number. More... | |
template<typename CharPointerType > | |
static double | getDoubleValue (CharPointerType text) noexcept |
Parses a character string, to read a floating-point value. More... | |
template<typename IntType , typename CharPointerType > | |
static IntType | getIntValue (const CharPointerType text) noexcept |
Parses a character string, to read an integer value. More... | |
template<typename CharPointerType > | |
static size_t | lengthUpTo (CharPointerType text, const size_t maxCharsToCount) noexcept |
Counts the number of characters in a given string, stopping if the count exceeds a specified limit. More... | |
template<typename CharPointerType > | |
static size_t | lengthUpTo (CharPointerType start, const CharPointerType end) noexcept |
Counts the number of characters in a given string, stopping if the count exceeds a specified end-pointer. More... | |
template<typename DestCharPointerType , typename SrcCharPointerType > | |
static void | copyAll (DestCharPointerType &dest, SrcCharPointerType src) noexcept |
Copies null-terminated characters from one string to another. More... | |
template<typename DestCharPointerType , typename SrcCharPointerType > | |
static size_t | copyWithDestByteLimit (DestCharPointerType &dest, SrcCharPointerType src, size_t maxBytesToWrite) noexcept |
Copies characters from one string to another, up to a null terminator or a given byte size limit. More... | |
template<typename DestCharPointerType , typename SrcCharPointerType > | |
static void | copyWithCharLimit (DestCharPointerType &dest, SrcCharPointerType src, int maxChars) noexcept |
Copies characters from one string to another, up to a null terminator or a given maximum number of characters. More... | |
static int | compare (juce_wchar char1, juce_wchar char2) noexcept |
Compares two characters. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static int | compare (CharPointerType1 s1, CharPointerType2 s2) noexcept |
Compares two null-terminated character strings. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static int | compareUpTo (CharPointerType1 s1, CharPointerType2 s2, int maxChars) noexcept |
Compares two null-terminated character strings, up to a given number of characters. More... | |
static int | compareIgnoreCase (juce_wchar char1, juce_wchar char2) noexcept |
Compares two characters, using a case-independant match. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static int | compareIgnoreCase (CharPointerType1 s1, CharPointerType2 s2) noexcept |
Compares two null-terminated character strings, using a case-independant match. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static int | compareIgnoreCaseUpTo (CharPointerType1 s1, CharPointerType2 s2, int maxChars) noexcept |
Compares two null-terminated character strings, using a case-independent match. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static int | indexOf (CharPointerType1 textToSearch, const CharPointerType2 substringToLookFor) noexcept |
Finds the character index of a given substring in another string. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static CharPointerType1 | find (CharPointerType1 textToSearch, const CharPointerType2 substringToLookFor) noexcept |
Returns a pointer to the first occurrence of a substring in a string. More... | |
template<typename CharPointerType > | |
static CharPointerType | find (CharPointerType textToSearch, const juce_wchar charToLookFor) noexcept |
Returns a pointer to the first occurrence of a substring in a string. More... | |
template<typename CharPointerType1 , typename CharPointerType2 > | |
static int | indexOfIgnoreCase (CharPointerType1 haystack, const CharPointerType2 needle) noexcept |
Finds the character index of a given substring in another string, using a case-independent match. More... | |
template<typename Type > | |
static int | indexOfChar (Type text, const juce_wchar charToFind) noexcept |
Finds the character index of a given character in another string. More... | |
template<typename Type > | |
static int | indexOfCharIgnoreCase (Type text, juce_wchar charToFind) noexcept |
Finds the character index of a given character in another string, using a case-independent match. More... | |
template<typename Type > | |
static Type | findEndOfWhitespace (Type text) noexcept |
Returns a pointer to the first non-whitespace character in a string. More... | |
template<typename Type , typename BreakType > | |
static Type | findEndOfToken (Type text, BreakType breakCharacters, Type quoteCharacters) |
Returns a pointer to the first character in the string which is found in the breakCharacters string. More... | |
A collection of functions for manipulating characters and character strings.
Most of these methods are designed for internal use by the String and CharPointer classes, but some of them may be useful to call directly.
|
staticnoexcept |
Converts a character to upper-case.
Referenced by CharPointer_ASCII::toUpperCase(), CharPointer_UTF32::toUpperCase(), CharPointer_UTF16::toUpperCase(), and CharPointer_UTF8::toUpperCase().
|
staticnoexcept |
Converts a character to lower-case.
Referenced by CharPointer_ASCII::toLowerCase(), CharPointer_UTF32::toLowerCase(), CharPointer_UTF16::toLowerCase(), and CharPointer_UTF8::toLowerCase().
|
staticnoexcept |
Checks whether a unicode character is upper-case.
Referenced by CharPointer_ASCII::isUpperCase(), CharPointer_UTF32::isUpperCase(), CharPointer_UTF16::isUpperCase(), and CharPointer_UTF8::isUpperCase().
|
staticnoexcept |
Checks whether a unicode character is lower-case.
Referenced by CharPointer_ASCII::isLowerCase(), CharPointer_UTF32::isLowerCase(), CharPointer_UTF16::isLowerCase(), and CharPointer_UTF8::isLowerCase().
|
staticnoexcept |
Checks whether a character is whitespace.
Referenced by CharPointer_ASCII::isWhitespace(), CharPointer_UTF32::isWhitespace(), and CharPointer_UTF16::isWhitespace().
|
staticnoexcept |
Checks whether a character is whitespace.
|
staticnoexcept |
Checks whether a character is a digit.
Referenced by CharPointer_ASCII::isDigit(), CharPointer_UTF32::isDigit(), and CharPointer_UTF16::isDigit().
|
staticnoexcept |
Checks whether a character is a digit.
|
staticnoexcept |
Checks whether a character is alphabetic.
Referenced by CppTokeniserFunctions::isIdentifierStart(), CharPointer_ASCII::isLetter(), CharPointer_UTF32::isLetter(), CharPointer_UTF16::isLetter(), and CharPointer_UTF8::isLetter().
|
staticnoexcept |
Checks whether a character is alphabetic.
|
staticnoexcept |
Checks whether a character is alphabetic or numeric.
Referenced by CppTokeniserFunctions::isIdentifierBody(), CharPointer_ASCII::isLetterOrDigit(), CharPointer_UTF32::isLetterOrDigit(), CharPointer_UTF16::isLetterOrDigit(), CharPointer_UTF8::isLetterOrDigit(), and CppTokeniserFunctions::skipNumberSuffix().
|
staticnoexcept |
Checks whether a character is alphabetic or numeric.
|
staticnoexcept |
Checks whether a character is a printable character, i.e.
alphabetic, numeric, a punctuation character or a space.
|
staticnoexcept |
Checks whether a character is a printable character, i.e.
alphabetic, numeric, a punctuation character or a space.
|
staticnoexcept |
Returns 0 to 16 for '0' to 'F", or -1 for characters that aren't a legal hex digit.
Referenced by CharacterFunctions::HexParser< ResultType >::parse(), and CppTokeniserFunctions::writeEscapeChars().
|
staticnoexcept |
Converts a byte of Windows 1252 codepage to unicode.
|
staticnoexcept |
Parses a character string to read a floating-point number.
Note that this will advance the pointer that is passed in, leaving it at the end of the number.
|
staticnoexcept |
Parses a character string, to read a floating-point value.
Referenced by CharPointer_UTF32::getDoubleValue(), CharPointer_ASCII::getDoubleValue(), CharPointer_UTF16::getDoubleValue(), and CharPointer_UTF8::getDoubleValue().
|
staticnoexcept |
Parses a character string, to read an integer value.
|
staticnoexcept |
Counts the number of characters in a given string, stopping if the count exceeds a specified limit.
Referenced by CharPointer_ASCII::lengthUpTo(), CharPointer_UTF32::lengthUpTo(), CharPointer_UTF16::lengthUpTo(), and CharPointer_UTF8::lengthUpTo().
|
staticnoexcept |
Counts the number of characters in a given string, stopping if the count exceeds a specified end-pointer.
|
staticnoexcept |
Copies null-terminated characters from one string to another.
Referenced by CharPointer_ASCII::writeAll(), CharPointer_UTF32::writeAll(), CharPointer_UTF16::writeAll(), and CharPointer_UTF8::writeAll().
|
staticnoexcept |
Copies characters from one string to another, up to a null terminator or a given byte size limit.
References getAddressDifference().
Referenced by CharPointer_ASCII::writeWithDestByteLimit(), CharPointer_UTF32::writeWithDestByteLimit(), CharPointer_UTF16::writeWithDestByteLimit(), and CharPointer_UTF8::writeWithDestByteLimit().
|
staticnoexcept |
Copies characters from one string to another, up to a null terminator or a given maximum number of characters.
Referenced by CharPointer_ASCII::writeWithCharLimit(), CharPointer_UTF32::writeWithCharLimit(), CharPointer_UTF16::writeWithCharLimit(), and CharPointer_UTF8::writeWithCharLimit().
|
staticnoexcept |
Compares two characters.
Referenced by CharPointer_ASCII::compare(), CharPointer_UTF32::compare(), CharPointer_UTF16::compare(), and CharPointer_UTF8::compare().
|
staticnoexcept |
Compares two null-terminated character strings.
|
staticnoexcept |
Compares two null-terminated character strings, up to a given number of characters.
Referenced by CharPointer_ASCII::compareUpTo(), CharPointer_UTF32::compareUpTo(), CharPointer_UTF16::compareUpTo(), and CharPointer_UTF8::compareUpTo().
|
staticnoexcept |
Compares two characters, using a case-independant match.
Referenced by CharPointer_ASCII::compareIgnoreCase(), CharPointer_UTF32::compareIgnoreCase(), CharPointer_UTF16::compareIgnoreCase(), and CharPointer_UTF8::compareIgnoreCase().
|
staticnoexcept |
Compares two null-terminated character strings, using a case-independant match.
|
staticnoexcept |
Compares two null-terminated character strings, using a case-independent match.
Referenced by CharPointer_ASCII::compareIgnoreCaseUpTo(), CharPointer_UTF32::compareIgnoreCaseUpTo(), CharPointer_UTF16::compareIgnoreCaseUpTo(), and CharPointer_UTF8::compareIgnoreCaseUpTo().
|
staticnoexcept |
Finds the character index of a given substring in another string.
Returns -1 if the substring is not found.
References int().
Referenced by CharPointer_ASCII::indexOf(), CharPointer_UTF32::indexOf(), CharPointer_UTF16::indexOf(), and CharPointer_UTF8::indexOf().
|
staticnoexcept |
Returns a pointer to the first occurrence of a substring in a string.
If the substring is not found, this will return a pointer to the string's null terminator.
References int().
|
staticnoexcept |
Returns a pointer to the first occurrence of a substring in a string.
If the substring is not found, this will return a pointer to the string's null terminator.
|
staticnoexcept |
Finds the character index of a given substring in another string, using a case-independent match.
Returns -1 if the substring is not found.
References int().
|
staticnoexcept |
Finds the character index of a given character in another string.
Returns -1 if the character is not found.
Referenced by CharPointer_ASCII::indexOf(), CharPointer_UTF32::indexOf(), CharPointer_UTF16::indexOf(), and CharPointer_UTF8::indexOf().
|
staticnoexcept |
Finds the character index of a given character in another string, using a case-independent match.
Returns -1 if the character is not found.
Referenced by CharPointer_ASCII::indexOf(), CharPointer_UTF32::indexOf(), CharPointer_UTF16::indexOf(), and CharPointer_UTF8::indexOf().
|
staticnoexcept |
Returns a pointer to the first non-whitespace character in a string.
If the string contains only whitespace, this will return a pointer to its null terminator.
Referenced by CharPointer_UTF32::findEndOfWhitespace(), CharPointer_ASCII::findEndOfWhitespace(), CharPointer_UTF16::findEndOfWhitespace(), and CharPointer_UTF8::findEndOfWhitespace().
|
static |
Returns a pointer to the first character in the string which is found in the breakCharacters string.