ng:trimRight

ng:trimRight

The built-in function, ng:trimRight trims any trailing blanks from a string, which is the input for the function.

 

Example:

 

This expression outputs the string: '   abc':

 

NG2BuiltInFunctionsTrimRight0001

 

You can also see the difference, if you combine this function with the concat function, which concatenates multiple strings:

 

This expression outputs: '<   abc>':

 

NG2BuiltInFunctionsTrimRight0002

 

If you get the error message: "Required cardinality of first argument of <function()> is zero or one; supplied value contains <x> items", then you should refer to the suggestions here.

    Notice: Help Center Transition Update

    As of January 13, 2025, we are excited to announce that our new Help Center is in the final stages of development. While the Knowledge Base is already accessible, our current JIRA system will continue to manage support tickets during this transition period. For assistance with InterForm Output Management Software, please refer to the Support for InterForm Output Management Software.

    We appreciate your patience and understanding as we work to enhance your support experience. If you have any questions or encounter any issues, please do not hesitate to reach out via the existing support channels.

    Best regards,
    The InterForm Support Team


      • Related Articles

      • ng:resourceExist

        ng:resourceExist(resource,path) This function checks, if a resource in InterFormNG2 exists or not. The function returns a boolean: true or false. The ng:resourceExist Xpath function has this format: ng:resourceExist(resource,path), where: resource ...
      • ng:decrypt

        The built-in function, ng:decrypt is linked with the encryption functions: ng:encrypt and the workflow component, Set secure workflow variable. The function, ng:decrypt can decrypt contents, that was previously encrypted with these functions. The ...
      • ng:minimum

        InterFormNG2 includes the special built-in XPath function, ng:minimum. This function returns the smallest value of two numeric arguments. The function only accepts two numeric arguments - no more and no less. Examples: ng:minimum(-14,2) returns 2 ...
      • ng:base64

        The built-in function, ng:base64 converts a string (text) into a base64 based string. This can e.g. be used, if you want to insert any kind of data into an XML node, without substituting any characters, that are not allowed. This function is related ...
      • ng:fileExist

        ng:fileExist(path) The ng:fileExist Xpath function has this format: ng:fileExist(path), where path contains the path to a file, that should be verified. The function returns true, if the file exists and false, if the file does not exist. The function ...