unfortunately, there is no placeholder available yet for timezone offsets like +00:00
but one could hard-code the "+00:00" via
Informat( :Column 1, "Format Pattern", "<YYYY></><MM></><DD> <hh>:<mm>:<ss>+00:00" )
actually no benefit compared to Jarmos version - just a much longer code.
maybe: you can force Jmp to place DD and MM at the right position
If you want to parse input with varying timezone offset, you have to split off the timezone info and add it later:
Informat( Word( 1, :input, "+" ) ) + Num( Word( 1, Word( 2, :input, "+" ), ":" ) )
* 60 * 60
If there are negative offsets as well, it gets harder and harder to parse.
Then you should consider this request from the wish list:Date Format Pattern - additional functionality
and maybe support it with a Kudo ...