Cleaning Function
Best Answer
-
Hello
There are two functions likely useful:
- Trim - remove character from either start or end of value (use twice for both start and end)
- Compact Spaces - replace mulitple spaces with a single space
param test;
Trim(
Trim(
CompactSpaces([p:test]),
false,
`Space`
),
true,
`Space`
)0
Answers
-
Hi Josh, I will try that one. Thanks a lot
1