Greeting.
I have a string of the following form:
"<bunch of white space> MANAGER: <manager's lastname>, <manager's firstname> <initial> <bunch of white space> <Employee's lastname>, <employee's firstname> <initial> Status: <a bunch more stuff I don't care about> "
I want to get the "employee's lastname".
I tried:
line.indexOf("([A-Z]*)(,)(.*)(STATUS");
but it didn't work. Any help?
_________________
Bob Rashkin
I have a string of the following form:
"<bunch of white space> MANAGER: <manager's lastname>, <manager's firstname> <initial> <bunch of white space> <Employee's lastname>, <employee's firstname> <initial> Status: <a bunch more stuff I don't care about> "
I want to get the "employee's lastname".
I tried:
line.indexOf("([A-Z]*)(,)(.*)(STATUS");
but it didn't work. Any help?
_________________
Bob Rashkin