Changes between Version 38 and Version 39 of Ticket #28643
- Timestamp:
- Mar 23, 2018, 12:28:49 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28643 – Description
v38 v39 35 35 ||{{{Ord}}}||{{{ASCII}}}||Returns numeric value of left-most character. (Equivalent to {{{ord()}}} in Python.)||✔||✔||✔||{{{UNICODE}}}||~~9583~~|| 36 36 ||{{{Chr}}}||{{{CHR}}}||Character with the given code||✔||✔||{{{CHAR}}}||{{{CHAR}}}||~~9583~~|| 37 ||{{{Left}}}||{{{LEFT}}}||Returns the leftmost number of characters as specified||✔||✔**^2 ^**||✔||✔**^2^**||~~9583~~||37 ||{{{Left}}}||{{{LEFT}}}||Returns the leftmost number of characters as specified||✔||✔**^2, 6^**||✔||✔**^2^**||~~9583~~|| 38 38 ||{{{LPad}}}||{{{LPAD}}}||Returns the string argument, left-padded with the specified string||✔||✔||✔||✔**^1^**||~~9798~~|| 39 39 ||{{{LTrim}}}||{{{LTRIM}}}||Removes leading spaces||✔||✔||✔||✔||~~9220~~|| 40 40 ||{{{MD5}}}||{{{MD5}}}||Calculates the MD5 hash of string, returning the result in hexadecimal||✔||-||-||✔**^1^**||-|| 41 41 ||{{{Repeat}}}||{{{REPEAT}}}||Repeats a string the specified number of times||✔||✔**^3^**||✔||✔**^1^**||[https://github.com/django/django/pull/9808 9808]|| 42 ||{{{Replace}}}||{{{REPLACE}}}||Replaces occurrences of a specified string||✔||✔ ||✔||✔||~~9539~~||42 ||{{{Replace}}}||{{{REPLACE}}}||Replaces occurrences of a specified string||✔||✔**^6^**||✔||✔||~~9539~~|| 43 43 ||{{{Reverse}}}||{{{REVERSE}}}||Reverse the characters in a string||✔||-||✔||✔**^1^**||-|| 44 44 ||{{{Right}}}||{{{RIGHT}}}||Returns the specified rightmost number of characters||✔||✔**^2^**||✔||✔**^2^**||~~9583~~|| 45 ||{{{RPad}}}||{{{RPAD}}}||Appends string the specified number of times||✔||✔ ||✔||✔**^1^**||~~9798~~||45 ||{{{RPad}}}||{{{RPAD}}}||Appends string the specified number of times||✔||✔**^6^**|||✔||✔**^1^**||~~9798~~|| 46 46 ||{{{RTrim}}}||{{{RTRIM}}}||Removes trailing spaces||✔||✔||✔||✔||~~9220~~|| 47 47 ||{{{Trim}}}||{{{TRIM}}}||Removes leading and trailing spaces||✔||✔||✔||✔||~~9220~~|| … … 52 52 - **^4^** Behaviour can be emulated by directly substituting constant {{{math.pi}}}. 53 53 - **^5^** Behaviour can be emulated by using {{{1 / TAN(X)}}}. 54 - **^6^** Doesn't work properly with multibyte characters sets on Oracle.