Converts this string to a new character array.
()
| 793 | * Converts this string to a new character array. |
| 794 | */ |
| 795 | public char[] toCharArray(){ |
| 796 | char[] buffer = new char[count]; |
| 797 | System.arraycopy(value, offset, buffer, 0, count); |
| 798 | return buffer; |
| 799 | } |
| 800 | |
| 801 | /** |
| 802 | * Converts all of the characters in this String to lower case. |