Filter berdasarkan kategori:
Menampilkan 24 dari 48 fungsi dalam kategori String
ASCII
Returns the ASCII value (code point) of the first character in the string.
INT64BYTE_LENGTH
Mengembalikan jumlah bytes dari STRING atau BYTES value.
INT64CHAR_LENGTH
Returns the number of characters in a string. An alias for LENGTH, available for standard SQL compatibility.
INT64CHR
Converts a Unicode code point value into a string character. The inverse of the ASCII function.
STRINGCODE_POINTS_TO_BYTES
Converts an array of code points (extended ASCII 0–255) into BYTES.
BYTESCODE_POINTS_TO_STRING
Converts an array of Unicode code points into a STRING.
STRINGCONCAT
Concatenates two or more strings into one. A foundational string concatenation function in BigQuery that supports multiple data types.
STRINGCONTAINS_SUBSTR
Checks whether a string contains a specified substring. Case-insensitive and supports JSON structures.
BOOLENDS_WITH
Checks whether a string ends with a specified suffix. Returns a boolean.
BOOLFARM_FINGERPRINT
Menghitung fingerprint menggunakan algoritma FarmHash. Sangat cepat dan cocok untuk BigQuery.
INT64FORMAT
Formats values into a string based on a format string (similar to printf). Supports a wide range of format specifiers.
STRINGGENERATE_UUID
Menghasilkan UUID (Universally Unique Identifier) versi 4 secara random.
STRINGINITCAP
Capitalizes the first letter of each word and lowercases the rest. Title case transformation.
STRINGINSTR
Finds the position of a substring within a string. Supports searching from a specific position and locating the nth occurrence.
INT64LEFT
Extracts a specified number of characters from the left (beginning) of a string. A more readable shorthand than SUBSTR for extracting leading characters.
STRINGLENGTH
Returns the number of characters in a string. For BYTES, returns the number of bytes.
INT64LOWER
Converts all characters in a string to lowercase. Supports Unicode characters.
STRINGLPAD
Pads the left side of a string with characters until it reaches a specified length. Left padding.
STRINGLTRIM
Removes characters from the left side (beginning) of a string. Left trim for leading characters.
STRINGMD5
Menghitung MD5 hash dari input. Return BYTES.
BYTESNORMALIZE
Normalizes a Unicode string to a canonical form. Useful for consistent string comparisons across different Unicode representations.
STRINGNORMALIZE_AND_CASEFOLD
Normalizes a Unicode string and applies case-folding for correct Unicode-aware case-insensitive comparisons.
STRINGREGEXP_CONTAINS
Returns TRUE if the value matches the regular expression. Useful for pattern matching and format validation.
BOOLREGEXP_EXTRACT
Extracts the first substring that matches the regular expression. If the pattern has a capturing group, returns that group instead.
STRING