Currently to list all the indices matching a particular pattern, we use the wild card search using * to match all the characters like
curl http://10.171.203.21:9200/someString-*/address/_search
to match all indices starting with 'someString-'
Is there any alternative to do this without the * character ?