Is there any library API or regex pattern to split a String on some delimiter and automatically trim leading and trailing spaces from every element without having to loop the elements?
For example, on splitting " A B # C#D# E # " on # the desired output is [A B,C,D,E]
The closest I got is str.split("\\s*#\\s*") which gives [ A B, C, D, E]
Arrays.toString()? It works fine for me. – biziclop Nov 2 '11 at 20:57A Bbeing ` A B` instead. There is no delimiter at the start so the beginning isn't trimmed. – Mark Peters Nov 2 '11 at 20:58String[]. So when I say[A B,C,D,E], I really meant{"A B","C","D","E"}– Somu Nov 2 '11 at 21:08split()can't trim that. You can do"(^\\s+)|(\\s*#\\s*)|(\\s+$)"but that would create an extra empty string at the start and the end. – biziclop Nov 2 '11 at 21:08