augustoasilva opened a new pull request #11551:
URL: https://github.com/apache/arrow/pull/11551


   **MASK_FIRST_N**
   
   Returns a masked version of str with the first n values masked. Upper case 
letters are converted to "X", lower case letters are converted to "x" and 
numbers are converted to "n". For example, mask_first_n("1234-5678-8765-4321", 
4) results in nnnn-5678-8765-4321.
   
   **MASK_LAST_N**
   
   Returns a masked version of str with the last n values masked. Upper case 
letters are converted to "X", lower case letters are converted to "x" and 
numbers are converted to "n". For example, mask_last_n("1234-5678-8765-4321", 
4) results in 1234-5678-8765-nnnn.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to