Trim (PQL)
                                    Returns the supplied string without the leading and trailing 'whitespaces'
- Returned Output: Text
 - Library: PQL \ Common \ String
 - Version: 2020.13.000
 - Compatibility: 
- It can be combined with other PQL functions throughout the application.
 - It CANNOT be used with MDX or VBA functions. But it can be used on MDX-based content in other parts of the application.
 
 
Syntax
Trim( <Text> )
                                    
                                    * Click on the function's arguments above for more details on the input values.
Comments
- The input text string can be any alphanumeric set of characters.
 
Different Function types
- This function is like the Excel trim function.
 
Examples
This example returns "apple" without the blank spaces, from the input string:
" apple "
Trim(" apple ")