Tagged Questions
The null-terminated tag has no wiki summary.
14
votes
10answers
2k views
Why null-terminated strings? Or: null-terminated vs. characters + length storage
I'm writing a language interpreter in C, and my string type contains a length attribute, like so:
struct String
{
char* characters;
size_t length;
};
Because of this, I have to spend a lot ...
8
votes
8answers
649 views
Why do strings in C need to be null terminated?
Just wondering why this is the case. I'm eager to know more about low level languages, and I'm only into the basics of C and this is already confusing me.
Do languages like PHP automatically null ...
7
votes
5answers
246 views
Why are C#/.Net strings length-prefixed and null terminated?
After reading What's the rationale for null terminated strings? and some similar questions I have found that in C#/.Net strings are, internally, both length-prefixed and null terminated like in ...
4
votes
6answers
94 views
Using arrays of character strings: arrays of pointers - Are they like multidimensional arrays?
I've been reading C++ for dummies lately and either the title is a misnomer or they didn't count on me. On a section about utilizing arrays of pointers with characters strings they show a function on ...
4
votes
4answers
369 views
Non null-terminated string compiler option for gcc
Update
turns out this is just another case of "c++ is not c blues"
What I want
const char hex[16] = "0123456789ABCDEF";
the only thing that works
char hex[16] = "0123456789ABCDE"; hex[16] = ...
4
votes
4answers
392 views
Can a std::string contain embedded nulls?
For regular C strings, a NULL signifies the end of data.
What about std::string, can I have a string with embedded NULLS?
3
votes
10answers
1k views
Copying non null-terminated unsigned char array to std::string
If the array was null-terminated this would be pretty straight forward:
unsigned char u_array[4] = { 'a', 's', 'd', '\0' };
std::string str = reinterpret_cast<char*>(u_array);
std::cout ...
3
votes
2answers
673 views
[My]SQL VARCHAR Size and Null-Termination
Disclaimer: I'm very new to SQL and databases in general.
I need to create a field that will store a maximum of 32 characters of text data. Does "VARCHAR(32)" mean that I have exactly 32 characters ...
2
votes
3answers
180 views
Are null terminators part of text encoding?
I'm trying to read a null terminated string from a byte array; the parameter to the function is the encoding.
string ReadString(Encoding encoding)
For example, "foo" in the following encodings are:
...
2
votes
6answers
3k views
string array with garbage character at end
I have a char array buffer that I am using to store characters that the user will input one by one. My code below works but has a few glitches that I can't figure out:
when I execute a printf to ...
1
vote
3answers
222 views
How to properly convert char* into std::string? (issues while using expat / std::string(char*))
Problem Description
I'm using Expat with a custom C++ wrapper, which I already tested on other projects.
I'm running into problems, because the original data (c_str) is not converted to a std::string ...
1
vote
2answers
755 views
Converting a null-terminated memory stream to unicode string
In Delphi XE, I am capturing CF_UNICODETEXT data from the clipboard. The result is a stream that terminates with two null bytes. To get the actual string that was copied to clipboard, I need to strip ...
1
vote
4answers
4k views
C# null terminated string
I am communicating with a server who needs null terminated string
How can I do this smartly in C#?
0
votes
2answers
85 views
strstr() for a string that is NOT null-terminated
How do I do the in-place equivalent of strstr() for a counted string (i.e. not null-terminated) in C?
0
votes
2answers
87 views
Why puts function doesn't work with input char from socket in C++?
This is my code for a server running a login manager, that log into a file the malicious access and print out the result of the wrong login.
The chars user and pass come from the user input using the ...
0
votes
3answers
89 views
Copying a string with nulls inside
I want to copy a string in C (Windows) that contains nulls in it. I need a function to which I will pass buffer length so that the NULL characters will be meaningless. I found StringCbCopy function ...
0
votes
5answers
179 views
How to get a C-string out of a string that contains \0 without losing the \0
I currently have a pretty huge string. I NEED to convert it into a C-string (char*), because the function I want to use only take C-string in parameter.
My problem here is that any thing I tried made ...
0
votes
6answers
357 views
Copying a file line by line into a char array with strncpy
So i am trying to read a text file line by line and save each line into a char array.
From my printout in the loop I can tell it is counting the lines and the number of characters per line properly ...
0
votes
6answers
421 views
Disabling NUL-termination of strings in GCC
Is it possible to globally disable NUL-terminated strings in GCC?
I am using my own string library, and I have absolutely no need for the final NUL characters as it already stores the proper length ...
0
votes
4answers
1k views
Java BufferedReader for zero-terminated strings
I need to read zero-terminated strings from InputStream in Java.
Is there similar to BufferedReader.readLine() method for reading zero-termianted strings?
0
votes
5answers
176 views
A C style string file format conundrum
I'm very confused with this wee little problem I have. I have a non-indexed file format header. (more specifically the ID3 header) Now, this header stores a string or rather three bytes for ...