Feb 21, 2004 1 #2 musik Programmer Nov 20, 2001 33 US String.toCharArray(); (which is not static) This allows things like: [tt]String myString = "my String"; char[] myChars = myString.toCharArray();[/tt] or using the implicit String object: [tt]char[] myChars = "my String".toCharArray();[/tt] What do you need the char[] for? (Not questioning your need... just curious.) -DG Upvote 0 Downvote
String.toCharArray(); (which is not static) This allows things like: [tt]String myString = "my String"; char[] myChars = myString.toCharArray();[/tt] or using the implicit String object: [tt]char[] myChars = "my String".toCharArray();[/tt] What do you need the char[] for? (Not questioning your need... just curious.) -DG