i'd like to split a string on white space. currently, i have something like:
.log("Received message for 'EchoRoute' : ${body}")
.split(body().tokenize(",")).to("file:/tmp?fileName=${id}-${property.CamelSplitIndex}")
which splits the string of :
123,456,789
into 3 files in /tmp containing the split values w/o the delimieter. i've
tried to use \\s+ and the regexTokenizer to split the string based on white
space, but it doesn't seem to work for me. help ?
thanks,
-mark-
