I know there lots of way splitting a string to array.
but i wonder is there a regex that i can use it to split all string chars to a String[]
array ?
For example : "foo"
->String[] { "f","o","o" }
String input="foo";
String[] split=input.split( .... )