Add STRIP function to PyDough #223
Labels
documentation
Improvements or additions to documentation
effort - low
quick & simple issue
enhancement
New feature or request
user feature
Adding a new user-facing feature/functionality
Goal: add a
STRIP
function to PyDough with the following functionality, which should be tested e2e (seetest_pipeline.py
for examples):STRIP(X)
is equivalent to the python string expressionX.strip()
, or the SQL expressionTRIM(X)
STRIP(X, Y)
is equivalent to the python string expressionX.strip(Y)
, or the SQL expressionTRIM(Y from X)
This feature need to be documented in the function list documentation
The text was updated successfully, but these errors were encountered: