Feb 21, 2004 #1 DevlsAdvocate Programmer Joined Feb 21, 2004 Messages 1 Location US I'm soo confused, please help me!
Feb 21, 2004 1 #2 musik Programmer Joined Nov 20, 2001 Messages 33 Location 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