Is it possible to call something like this in Apache Camel's Spring DSL
<setHeader headerName="timestampPart3"><simple>${header.timestampPart2.substring(0, ${header.timestampPart2.length()} - 2)}</simple></setHeader>
or like this
<setHeader headerName="timestampPart3"><simple>${header.timestampPart2.substring(0, header.timestampPart2.length() - 2)}</simple></setHeader>
For the second attempt it identifies .length() - 2
as a single method name call