I am retrieving document text using regular expressions to create tokens, and am wanting to combine those tokens into a field in a single line with spaces between the values (this is for an address).
Our tokens are;
Address
City
State
Zip
I am trying to have them entered into a field in this format:
123 Main St. Hometown WA 98274
The format that I am getting no matter what I try is:
123 Main St.
Hometown
WA
98274
Can anyone point out what I'm missing or need to do?