I have declared a string array String s;
I tried finding the length of the string by giving strlen(s) but it didnt work . How to get the length of the string ?
|
I have declared a string array String s; I tried finding the length of the string by giving strlen(s) but it didnt work . How to get the length of the string ?
| |||||||
feedback
|
|
The function strlen does not take a string, but an array of chars. Please see this reference for examples. If you are using the type string you will find it's length by using the function length(), like this:
For more examples see this other question. | |||
|
feedback
|
declares a
for instance. To get the length of a string, you call its
| |||||||||
feedback
|
|
Alot of methods that I have seen take a This often is how 'string arrays' are ended and will usually be a good stop to calculate the string length. | |||
|
feedback
|