What about this?
PUT _ingest/pipeline/split1
{
"processors": [
{
"split": {
"field": "q5",
"separator": "[a-z][.] "
}
}, {
"split": {
"field": "q6",
"separator": "[a-z][.] "
}
}
]
}