472,328 Members | 1,047 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,328 software developers and data experts.

Remove \0 from a string

hi
here my code

FILE *fp;
char *line[2];
#define LINE_MAX 30

fp = fopen("test1.txt", "r");
if ( ( line[0] = malloc( LINE_MAX) + 1) == NULL )
exit( EXIT_FAILURE );

fgets(line[0], LINE_MAX, fp);
fclose(fp);

fp = fopen("test2.txt", "r");
if ( ( line[1] = malloc( LINE_MAX) + 1) == NULL )
exit( EXIT_FAILURE );

fgets(line[1], LINE_MAX, fp);
fclose(fp);
are there a way to remove \0 for line[0] and line[1]?

thanks

Nov 14 '05 #1
2 9065


collinm wrote:
hi
here my code

FILE *fp;
char *line[2];
#define LINE_MAX 30

fp = fopen("test1.txt", "r");
if ( ( line[0] = malloc( LINE_MAX) + 1) == NULL )
exit( EXIT_FAILURE );

fgets(line[0], LINE_MAX, fp);
fclose(fp);

fp = fopen("test2.txt", "r");
if ( ( line[1] = malloc( LINE_MAX) + 1) == NULL )
exit( EXIT_FAILURE );

fgets(line[1], LINE_MAX, fp);
fclose(fp);
are there a way to remove \0 for line[0] and line[1]?


Are you sure you want to remove the '\0' character?
Doing this may render the object to not be a string.
It is common to desire to remove the newline char, '\n'.
Perhaps that is what you want to do.
One way:
#include <string.h>
char *s;

if((s = strrchr(line[0],'\n')) != NULL) *s = '\0';

--
Al Bowers
Tampa, Fl USA
mailto: xa******@myrapidsys.com (remove the x to send email)
http://www.geocities.com/abowers822/

Nov 14 '05 #2


collinm wrote:
hi
here my code

FILE *fp;
char *line[2];
#define LINE_MAX 30

fp = fopen("test1.txt", "r");
if ( ( line[0] = malloc( LINE_MAX) + 1) == NULL )
exit( EXIT_FAILURE );

fgets(line[0], LINE_MAX, fp);
fclose(fp);

fp = fopen("test2.txt", "r");
if ( ( line[1] = malloc( LINE_MAX) + 1) == NULL )
exit( EXIT_FAILURE );

fgets(line[1], LINE_MAX, fp);
fclose(fp);
are there a way to remove \0 for line[0] and line[1]?


I am not sure what you are asking, but it *might*
be about one or another of these issues:

- The malloc() calls and the way you test for their
success are wrong. Look carefully: You ask malloc() for
LINE_MAX bytes, then you add 1 to whatever value malloc()
returns, then you store the sum in line[0] or line[1],
and finally you compare the sum to NULL. If malloc()
succeeds, line[0] or line[1] points to the second byte
of the allocated area, which is probably not what you
want -- in particular, you need to write free(line[0]-1)
when you release the area. If malloc() fails, adding 1
to NULL produces undefined behavior -- the most likely
outcome is that you will get a sum that is not equal to
NULL but is useless because "it doesn't point anywhere."

- You might have intended malloc(LINE_MAX + 1) instead
of malloc(LINE_MAX) + 1; if so, that would be correct from
the standpoint of memory management. However, it would be
unnecessary because fgets() will never attempt to store
anything in that "extra" byte. The second argument to
fgets() is the entire length of the buffer *including*
space for the '\0' fgets() will store; fgets() will store
at most LINE_MAX characters *including* the '\0'.

- When you say you want to "remove \0," do you mean
that you want to eliminate the "+1" from the allocations?
If that's it, go ahead: as mentioned above, fgets() will
not store more bytes than its second argument indicates.

- ... or do you actually want to "remove" the '\0'
that fgets() stores after the end of each input line?
That seems a very stupid and dangerous thing to do, but
if you really want you can overwrite the '\0' with a
different character:

*strchr(line[0], '\0') = 'X';

- ... or do you want to remove the '\n' (not '\0')
at the end of the input line? That makes more sense,
since the trailing '\n' is often not wanted. You need
to be just a little bit careful, though, because if the
input line is too long for the buffer fgets() will store
only the first part of it and there will be no '\n' to
"remove." Here's one way to do it:

char *p;
...
p = strchr(line[0], '\n');
if (p != NULL)
*p = '\0';

.... and here's a shorter alternative using a less familiar
function:

line[0][ strcspn(line[0], "\n") ] = '\0';

- Finally, it is a good thing that you are careful to
check for failure of malloc(), even though you have done
it incorrectly. However, it is a bad thing that you have
*not* checked for failure of fopen() or for failure of
fgets()! High-tech motion-sensing locks on your attic
windows do not improve the security of your house if you
leave the front door hanging open.

--
Er*********@sun.com

Nov 14 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Christopher Armstrong | last post by:
Hello! I'm trying to write a part of a program that will remove all files in its directory. I have tried the std::remove feature of the standard...
12
by: Sam Collett | last post by:
How do I remove an item with a specified value from an array? i.e. array values 1,2,2,5,7,12,15,21 remove 2 from array would return...
4
by: u7djo | last post by:
Hi, I'm currently building an application in Access and as part of this need to import forms and modules from another database. Some of the...
1
by: Craig Buchanan | last post by:
what is the fastest way to remove a value from a string array? something like: dim x as string() = {"A","B","C","D"} 'remove C x.Clear(x,...
3
by: Niyazi | last post by:
Hi all, I have a dataTable that contains nearly 38400 rows. In the dataTable consist of 3 column. column 1 Name: MUHNO column 2 Name: HESNO...
31
by: Extremest | last post by:
I have a loop that is set to run as long as the arraylist is > 0. at the beginning of this loop I grab the first object and then remove it. I then...
15
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no...
10
by: Mike Copeland | last post by:
I have data I need to normalize - it's "name" data. For example, I have the following: "Watts, J.C." I wish to (1) parse the "first name"...
26
by: Brad | last post by:
I'm writing a function to remove certain characters from strings. For example, I often get strings with commas... they look like this: "12,384" ...
10
by: Tony Johansson | last post by:
Hello! I have a collection with a lot of object. Each object has the following definition. public class ParametermappingObj { private string...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
1
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.