文字列関数は通常、入力として文字列を受け取り、出力として文字列を返すので、このように呼ばれます。関数によっては整数を入力または返すものもありますので、データ型の制約をよく確認してください。
特に指定のない限り、すべてのインデックスは1ベースです。0インデックスは文字列の先頭より前とみなされます。
To view the full table, click the expand button in its top right corner
Function | Definition | Data Type Constraint | |
---|---|---|---|
| Concatenation operator | x, y in {string|CLOB}, return type is string | |
| Provides ASCII value of the leftmost character in x. If the input is an empty string, the function will return null | return type is integer | |
| Provides the character for ASCII value x 1 | x in {integer} | |
| Concatenates x and y with ANSI semantics. If x and/or y is null, returns null | x, y in {string|CLOB} | |
| Concatenates x and y with non-ANSI null semantics. If x and y is null, returns null. If only x or y is null, returns the other value | x, y in {string|CLOB} | |
| Makes the first letter of each word in string x capital and all others lowercase | x in {string} | |
| Inserts string2 into string1 | str1 in {string}, start in {integer}, length in {integer}, str2 in {string} | |
| Makes x lowercase | x in {string} | |
| Gets left y characters of x | x in {string|CLOB}, y in {integer|CLOB}, return type is string | |
| Gets length of x | return type is integer | |
| Finds position of x in y starting at the beginning of y | x in {string|CLOB}, y in {string|CLOB}, return type is integer | |
| Finds position of x in y starting at z | x in {string|CLOB}, y in {string|CLOB}, z in {integer|CLOB}, return type is integer | |
| Pads input string x with spaces on the left to the length of y | x in {string|CLOB}, y in {integer|CLOB}, return type is string | |
| Pads input string x on the left to the length of y using character z | x in {string|CLOB}, y in {string|CLOB}, z in {character|CLOB}, return type is string | |
| Left trims x of blank chars | x in {string|CLOB}, return type is string | |
| Calculates the MD5 hash of a string. For more information about supported platforms where the function can be pushed down and further details, please refer to MD5 Function | x in {string}, return type is string | |
| Returns a properly encoded query string appended to the given path. Null-valued expressions are omitted, and a null path is treated as ''. Names are optional for column reference expressions, e.g.:
| path, expr in {string}, name is an identifier | |
| Repeats string1 the specified number of times | str1 in {string}, instances in {integer}, return type is string | |
| Replaces all y in x with z | x,y,z in {string|clob}, return type is string | |
| Replaces one or more occurrences of pattern with sub in str 2 | str, pattern, sub in {string}, return type is string | |
| Gets right y characters of x | x in {string|CLOB}, y in {integer|CLOB}, return type is string | |
| Pads input string x with spaces on the right to the length of y | x in {string|CLOB}, y in {integer|CLOB}, return type is string | |
| Pads input string x on the right to the length of y using character z | x in {string|CLOB}, y in {string|CLOB}, z in {character|CLOB}, return type is string | |
| Right trims x of blank chars | x in {string|CLOB}, return type is string | |
| Splits a string on the delimiter and returns the given position (counting from one) | string is any type, delimiter is any type, position in {integer, short, byte}, return type is string | |
| Gets substring from x, from position y to the end of x | y in {integer|CLOB} | |
| Gets substring from x from position y with length z | y, z in {integer|CLOB} | |
| Returns a CLOB from the BLOB with the given encoding. BASE64, HEX, and the built-in Java Charset names are valid values for the encoding 3 | x is a BLOB, encoding is a string, return type is CLOB | |
| Returns a BLOB from the CLOB with the given encoding. BASE64, HEX, and the builtin Java Charset names are valid values for the encoding | x in a CLOB, encoding is a string, return type is BLOB | |
| Translates string x by replacing each character in y with the character in z at the same position | x in {string} | |
| Trims the leading, trailing, or both ends of a string y of character x. If | x in {character|CLOB}, y in {string|CLOB} | |
| Makes x uppercase | x in {string} | |
| Unescaped version of x. Possible escape sequences are \b - backspace, \t - tab, \n - line feed, \f - form feed, \r - carriage return. \uXXXX, where X is a hex value, can be used to specify any Unicode character. \XXX, where X is an octal digit, can be used to specify an octal byte value. If any other character appears after an escape character, that character will appear in the output, and the escape character will be ignored | x in {string|CLOB} | |
| Converts a string (or a CLOB) to the
| x in {string |CLOB}, encoding is a string, return type is string (or a CLOB) | |
| Decodes a string from the
| x in {string |CLOB}, encoding is a string, return type is string (or a CLOB) | |
| Returns a universally unique identifier. Generates a type 4 (pseudo-randomly generated) UUID using a cryptographically strong random number generator. The format is XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX, where each X is a hex digit | no input value; return type is string |
Special Note on CHR(x) CHAR(x)
これらの関数で使用される非ASCII 範囲の文字または整数は、関数が評価される場所(CData Virtuality Server vs ソース)によって異なる結果または例外を生成する可能性があります。CData Virtuality Server はJava デフォルトのint からchar、char からint への変換を使用し、UTF16 値上で動作します。
Special Note on REGEXP_REPLACE(str, pattern, sub [, flags])
pattern パラメータは有効な Java Regular Expressionであることを期待します。
flags引数には、以下の意味を持つ有効なフラグのいずれかを連結したものを指定します:
Flag | Name | Meaning |
---|---|---|
g | global | Replace all occurrences, not just the first |
m | multiline | Match over multiple lines |
i | case insensitive | Match without case sensitivity |
Special Note on TO_CHARS(x, encoding)
サポートされているCharset名の詳細については、Javaドキュメントの Class Charsetセクションを参照してください。CHARACTERの場合、マッピングできない文字はCHARACTERのデフォルト文字に置き換えられます。Base64のようなバイナリ形式をバイトに変換すると、認識できない文字に遭遇してエラーになります。
Encoding a String Using TO_CHARS
文字列をBase64でエンコードする必要がある場合は、このスニペットを使用できます:
SELECT
to_chars(to_bytes(
'Plaintext string'
,
'UTF-8'
),
'base64'
);;