Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::functions::string::expr_fn - Rust
[go: Go Back, main page]

datafusion::functions::string

Module expr_fn

Source

Functions§

  • Returns the numeric code of the first character of the argument.
  • Returns the number of bits in the string
  • Removes all characters, spaces by default, from both sides of a string
  • Converts the Unicode code point to a UTF8 character
  • Concatenates the text representations of all the arguments. NULL arguments are ignored
  • Concatenates all but the first argument, with separators. The first argument is used as the separator string, and should not be NULL. Other NULL arguments are ignored.
  • Return true if search_string is found within string. treated it like a reglike
  • Returns true if the string ends with the suffix, false otherwise.
  • Converts the first letter of each word in string in uppercase and the remaining characters in lowercase
  • Returns the Levenshtein distance between the two given strings
  • Converts a string to lowercase.
  • Removes all characters, spaces by default, from the beginning of a string
  • returns the number of bytes of a string
  • replace the substring of string that starts at the start’th character and extends for count characters with new substring
  • Repeats the string to n times
  • Replaces all occurrences of from with to in the string
  • Removes all characters, spaces by default, from the end of a string
  • Splits a string based on a delimiter and picks out the desired field based on the index.
  • Returns true if string starts with prefix.
  • Converts an integer to a hexadecimal string.
  • Removes all characters, spaces by default, from both sides of a string
  • Converts a string to uppercase.