Painless Split

Is there a split function available in painless that would split fields that have values like /a/b/c/ for / and store a,b and c in a string array?

You should be able to use the java API within painless.

/\./.split(any_string);

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.