473,378 Members | 1,094 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 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 9382


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 library, but I don't know its syntax. Also, what's...
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 1,5,7,12,15,21 (12 and 21 are NOT removed, duplicates are...
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 imports will be revisions of existing forms/modules so I...
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, x.IndexOf(x, "C"), 1) Questions:
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 Column 3 Name: BALANCE Let me give you some...
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 go into another loop that checks to see if there...
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 idea how. Any pointers much appreciated. Chris
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" ("J.C.") and adjust it to "JC". Essentially, I want to...
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" I'd like to take that string, remove the comma...
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 Name {get;set;} private string Id {get;set;}...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.