|
The explanation in the course should be sufficient. Here's an example of the split method: Say you have a String name = "Eileen Duclos". The split method generates an array: String[] myNames = name.split(" ") (or String[] myNames = {"Eileen", "Duclos"}. (all parts of the String that are separated by the space character) So: myNames[0] = "Eileen". myNames[1] = "Duclos" Hope this will help you. Gibbs wrote: I'm trying to work a bit ahead here, because I know that I don't have the experience that most folks here have in order to give myself extra time, but I just got a bit lost. Looking at the homework for this lab, there is .split introduced.... was this covered somewhere? I've gone elsewhere on the web when I've gotten a bit stuck, and have dug myself out, but this seems to have come out of left field. Is there a specific place to look for good tutorials for those things that don't seem to be covered? As far as I can tell by perusing the past posts, the entire course content is within the webpages that we have access to. I've managed to make everything run so far and don't want to give up on this course. Or do we just start asking here when it starts to make no sense? --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/javaprogrammingwithpassion?hl=en -~----------~----~----~----~------~----~------~--~--- |
- [java programming] Lab 1036. What am I missing? Gibbs
- [java programming] Re: Lab 1036. What am I missing? miga
- [java programming] Re: Lab 1036. What am I missing? Randell
- [java programming] Re: Lab 1036. What am I missing? Geronimo
- Reponse from Jacques Colmenero Solution architect :... Jacques Colmenero
- [java programming] Re: Reponse from Jacques Col... bursuc lucian
- [java programming] Re: Lab 1036. What am I missing... Marco Versele
