Data Integration Connectors
- Data Integration Connectors
- All Products
Function
| Function
| Function
| Function
|
---|---|---|---|
ABS()
| IN()
| MOD()
| SYSDATE()
|
ADD_TO_DATE()
| INSTR()
| POWER()
| SYSTIMESTAMP()
|
AVG()
| IS_DATE()
| REG_REPLACE()
| TAN()
|
CEIL()
| IS_NUMBER()
| REPLACECHR()
| TANH()
|
CHR()
| IS_SPACES()
| REPLACESTR()
| TO_BIGINT
|
CONCAT()
| ISNULL()
| ROUND(DATE)
| TO_CHAR(DATE)
|
COS()
| LAST_DAY()
| ROUND(NUMBER)
| TO_CHAR(NUMBER)
|
COSH()
| LENGTH()
| RPAD()
| TO_CHAR(STRING)
|
COUNT()
| LN()
| RTRIM()
| TO_DATE()
|
DATE_COMPARE()
| LOG()
| SIGN()
| TO_DECIMAL()
|
DATE_DIFF()
| LOWER()
| SIN()
| TO_FLOAT()
|
DECODE()
| LPAD()
| SINH()
| TO_INTEGER()
|
EXP()
| LTRIM()
| SQRT()
| TRUNC(DATE)
|
FLOOR()
| MAX()
| STDDEV()
| TRUNC(NUMBER)
|
GET_DATE_PART()
| MD5()
| SUBSTR()
| UPPER()
|
IIF()
| MIN()
| SUM()
| VARIANCE()
|
Escape sequence
| Description
|
---|---|
\1
| Back reference
|
\b
| Backspace (use
\010 )
|
\cK
| Control char
^K (For example, use
\001 )
|
\e
| Escape (use
\033 )
|
\g1
| Back reference
|
\g{1}
| Back reference
|
\g{+1}
| Back reference
|
\g{-1}
| Back reference
|
\g{name}
| Named back reference
|
\g<name>
| Subroutine call
|
\g'name'
| Subroutine call
|
\k<name>
| Named back reference
|
\k'name'
| Named back reference
|
\lX
| Lowercase
X
|
\ux
| Uppercase
x
|
\L...\E
| Lowercase text
...
|
\K
| Reset beginning of
$0
|
\N{name}
| Named Unicode character
|
\R
| Line break
|
\U...\E
| Upper case text
...
|
\X
| Extended Unicode sequence
|
\%d123
| Decimal character 123
|
\%xFF
| Hex character FF
|
\%o123
| Octal character 123
|
\%u1234
| Unicode character 0x1234
|
\%U12345678
| Unicode character 0x12345678
|
Empty string
| Description
|
---|---|
\g
| At beginning of subtext being searched
|
\G
| At end of last match
|
\Z
| At end of text, or before newline at end of text
|
(?=re)
| Before text matching
re
|
(?!re)
| Before text not matching
re
|
(?<=re)
| After text matching
re
|
(?<!re)
| After text not matching
re
|
re&
| Before text matching
re
|
re@=
| Before text matching
re
|
re@!
| Before text not matching
re
|
re@<=
| After text matching
re
|
re@<!
| After text not matching
re
|
\zs
| Sets start of match (=
\K )
|
\ze
| Sets end of match
|
\%^
| Beginning of file
|
\%$
| End of file
|
\%V
| On screen
|
\%#
| Cursor position
|
\%'m
| Mark
m position
|
\%23l
| In line 23
|
\%23c
| In column 23
|
\%23v
| In virtual column 23
|
Date1 argument
| Date2 argument
| Format argument
|
---|---|---|
Date
| Date
| Year, Month, and Day
|
Date
| Datetime
| Year, Month, Day, Hour, Minute, Second, Millisecond, and Microsecond
|
Datetime
| Date
| Year, Month, Day, Hour, Minute, Second, Millisecond, and Microsecond
|
Datetime
| Datetime
| Year, Month, Day, Hour, Minute, Second, Millisecond, and Microsecond
|
Time
| Time
| Hour, Minute, Second, Millisecond, and Microsecond
|
Timestamp
| Timestamp
| Day, Hour, Minute, Second, Millisecond, and Microsecond
|