The system variables documentation provides the following:
%originalinput – all sentences user passed into volley, before adjusted in any way
%originalsentence – the current sentence after tokenization but before any adjustments
What I need is a mix of both.
I need the the current sentence before adjusted in any way, so even before tokenization.
Even if I use something like:
$$tmptoken = $cs_token
$cs_token = 0
^retry(SENTENCE)
The Output is tokenized, so:
This is a sentence.
Goes to
This is a sentence .
I want to achieve that if I just append all sentences I would have an exact copy of %originalinput.
The only way I can think of is splitting it manually at ,.? or ! but that seems a bit unsure and ugly to me.