Hello,
I have this simple chain that represent a date (with 2digit year format)
200424
I'm looking for a way to parse it to obtain this output :
year : 20
month : 04
montday : 24
Is it possible with grok to extract part of a string / digit based on start/end position (like php function substr) ?
Thanks