Changes between Version 38 and Version 39 of Ticket #28643


Ignore:
Timestamp:
Mar 23, 2018, 12:28:49 PM (6 years ago)
Author:
Mariusz Felisiak
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28643 – Description

    v38 v39  
    3535||{{{Ord}}}||{{{ASCII}}}||Returns numeric value of left-most character. (Equivalent to {{{ord()}}} in Python.)||‎✔||‎✔||‎✔||{{{UNICODE}}}||~~9583~~||
    3636||{{{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~~||
    3838||{{{LPad}}}||{{{LPAD}}}||Returns the string argument, left-padded with the specified string||‎✔||‎✔||‎✔||✔**^1^**||~~9798~~||
    3939||{{{LTrim}}}||{{{LTRIM}}}||Removes leading spaces||‎✔||‎✔||‎✔||‎✔||~~9220~~||
    4040||{{{MD5}}}||{{{MD5}}}||Calculates the MD5 hash of string, returning the result in hexadecimal||‎✔||-||-||✔**^1^**||-||
    4141||{{{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~~||
    4343||{{{Reverse}}}||{{{REVERSE}}}||Reverse the characters in a string||‎✔||-||‎✔||✔**^1^**||-||
    4444||{{{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~~||
    4646||{{{RTrim}}}||{{{RTRIM}}}||Removes trailing spaces||‎✔||‎✔||‎✔||‎✔||~~9220~~||
    4747||{{{Trim}}}||{{{TRIM}}}||Removes leading and trailing spaces||‎✔||‎✔||‎✔||‎✔||~~9220~~||
     
    5252- **^4^** Behaviour can be emulated by directly substituting constant {{{math.pi}}}.
    5353- **^5^** Behaviour can be emulated by using {{{1 / TAN(X)}}}.
     54- **^6^** Doesn't work properly with multibyte characters sets on Oracle.
Back to Top