problem in view for string with spaces

problem in view for string with spaces

if in form there is a string with a lot of spaces results is trim the spaces ...
example (field lormula in form that format string to fix length):
"Name: " + Name +  "               age" + age ;
result:
Name: Peter age 30
Name: Augusto age 35
----------
i like:
Name: Peter          age 30
Name: Augusto      age 35


Ruggine from Italy