Hi,
I'm experiencing some troubles trying to split a string using backslash with the split plugin.
XXX\YYY
I'd like to use split => ["field","\"]
Quickly ran into escape problems as expected, according to the documentation i have tried to use the config.support_escapes: true
and ["\\"]
but this dosen't really help as it looks like i'm escaping the double quotes and not the actual backslash.
Am i missing something ?