Hi all,
I am trying to index data from MySQL and one of the fields is delimited by ; and ,
. I want to convert it into array by delimiting it with both the characters. Currently i am using the following filter:
filter
{
mutate
{
split => { "scopus_aff_ids" => ";" }
}
}
This is able to delimit only based on ;
. But in some records data is delimited with ,
.
Please help me in achieving this