Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. keano6

    parsing strings

    Per, Tokra thanks for the replies. so I could have something like this... char* tmp; while(isalnum(report[index])==TRUE) { strcat(tmp, (const char*)report[index]); index++; } I guess though that my problem is that I don't know how big tmp is going to be at the outset so I can't...
  2. keano6

    parsing strings

    thanks for all the help guys - i got it working ok now. One more question though - Is it a bad idea to append values to a char*? I have the following: char* tmp; while(isalnum(report[index])==TRUE) { *tmp += report[index]; index++; } "report" is a character array...
  3. keano6

    parsing strings

    Hi, I'm new to c++, and am trying to parse a string and find the number of lines... I am having problems finding all the carriage returns with the following code: char* tmp; //skip to the end of the line while (*tmp != '\n') tmp++; Is there a better way of finding this character? Thanks.
  4. keano6

    problem locating session bean's home interface from client

    Hi, I am relatively new to j2ee, and am having problems getting the basics working. I am using sun's j2ee application server, and sun's deploytool to deploy the application. The application deploys no problem, but when I run it I get the following error - Application threw an...

Part and Inventory Search

Back
Top