
Not applicable
2014-06-20
04:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Possible to remove new lines from a field?
I have a field called Comments and the values in the field (strings) sometimes include new lines. The issue is when I represent this field on a straight table, even with the cell wrap upped to 4 lines, some of the string is getting cut off. I am wondering if it's possible to remove new lines all together from the values in the field?
5,402 Views
1 Solution
Accepted Solutions


Specialist II
2014-06-20
04:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try:
replace(FIELD, chr(10), ' ')
This will replace the new lines with a space.
Hope this helps!
4 Replies


Specialist II
2014-06-20
04:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try:
replace(FIELD, chr(10), ' ')
This will replace the new lines with a space.
Hope this helps!


Specialist II
2014-06-20
04:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you want to completely remove it, use:
purgechar(FIELD, chr(10))

Not applicable
2014-06-21
03:58 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
check the applicaton. Test data is as below.
ID | Comments |
1 | 1 First String 1 Second String 1 Third String |
2 | 2 First String 2 Second String |
3 | 3 Frist String |
4 | 4 Frist String |
5 | 5 Frist String 5 Second String 5 Third String 5 Fourth String 5 Fifth String |
5,230 Views

Contributor III
2019-07-18
04:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
see the following links:
for me i needed to remove newline and whitespace so i use:
let vNewString = replace(replace(replace(vString, chr(13), ''), chr(10), ''), ' ', '');
enjoy!
5,166 Views
