Enter Keywords:
1 - 10 of 16(0.013 seconds)
Sort By:
 
Hi Could any body tell me how to write a function to find length of a string I wrote this function using arrays and using pointers. I want another approach.I.e  I want third way of finding len...
Zones: C++Date Answered: 06/17/2003 Rating: 6.8 Views: 0
I am trying to copy a string from one char* to another* I have a bunch of methods like SetFirstName(char* str) {          SetString(&firstName, str); } //Description:  Copies a string fro...
Zones: C++Date Answered: 06/24/2004 Rating: 5.8 Views: 0
I am using strlen() to find the length of a very large string, this huge string, over 200,000 chars, causes it to have an access violation, or just makes the program hang, is there another function...
Zones: C++Date Answered: 07/31/2004 Rating: 6.2 Views: 0
Hi, This code: **** ....//defines using namespace std; int Gogo(PUNICODE_STRING p1,char aa[129]){       p1->length = (strlen(aa) + 1) * sizeof(int16);       p1->buffer = new int16[p1->length];       unsi...
Zones: C++Date Answered: 10/04/2004 Rating: 8.4 Views: 0
Hi, I have two values "EID=" and "Usr=". I want to extract the text between these two items in a string. The following code is giving me error: C:\VC\TradesFromFile\test2\test.cpp(62) : error...
Zones: C++Date Answered: 10/19/2005 Rating: 8.6 Views: 0
Hello everyone. I think this question might be a laugher for some of you guys since your so good but basically I have a program in C++ to get words into Piglatin format but I want this program to l...
Zones: C++Date Answered: 11/03/2005 Rating: 8.2 Views: 0
#include <string.h> #include <stdio.h> #define IIMAGE "T"; int main(){ printf("%d",strlen(IIMAGE)); } What is the problem of this program? I expect the output to be 1 but it keep saying syn...
Zones: CDate Answered: 11/13/2006 Rating: 9.8 Views: 0
Hi, I have a string called $id, its can be or variable length, but will end with either p or e. The first part of the string will be numeric, an example of what it can contain is, 45e, 567p, 23e, ...
Zones: PHP, PHP and Databases, Regular Expres...Date Answered: 11/09/2007 Rating: 9.0 Views: 0
Let say I have "12345" store in $str. How do I tell how many chars are in $str ?
Zones: PerlDate Answered: 04/11/2002 Rating: 8.2 Views: 380
Hello, My project has memory leak and I need to test if a Char* string is free. It shows up in debugger as "" but if I test it like this if (string)     string = NULL; // this results in "inv...
Zones: Palm OS ProgrammingDate Answered: 11/14/2006 Rating: 8.8 Views: 0