bog

Absent Member.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-01-13
14:48
358 views
Whitespace as delimiter.
How I can use whitespace (\\s) as delimiter?
2 Replies
nils.guenther@t

Vice Admiral
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-01-19
14:39
Hi Mikhail,
are you're talking about Flex Connector reading CSV-files (i.e. sdkfilereader)? It seems like the parser always treats the delimiter value as a literal and not as a regex. So unfortunately it is not possible. Two suggestions:
- If you're ok with a literal SPACE as delimiter use "\ " without the qotation marks
- I you really need the character class, switch to regex-parser and build a regex that mimics CSV-behavior e.g. (\\S+)\\s(\\S+)


Vice Admiral
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-08-19
15:32
I was able to select "other" from the drop down, go to the next box where you would input your custom delimiter and hit the space bar. I was able to go through and it parsed just fine.