Multiple choice technology enterprise content management

For string Variables,when we set the format to "Trim Blanks" what happens?

  1. All blanks in the string value are removed

  2. First and Last blank is removed

  3. Only the first blank is removed

  4. Only the last blank is removed

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Trim operations remove leading and trailing whitespace from strings. This means the first blank (leading) and last blank (trailing) are removed, but blanks within the string content remain unchanged. The trim operation does not remove all blanks from the entire string value.

AI explanation

"Trim Blanks" is analogous to a standard string trim operation: it strips only the leading and trailing blank characters, leaving any blanks in the middle of the string untouched. It does not remove all blanks throughout the value, and it affects both ends, not just one, which is why "First and Last blank is removed" is the correct description.