Best way to axe N bytes from the right?


 
Thread Tools Search this Thread
Top Forums Programming Best way to axe N bytes from the right?
# 1  
Old 08-08-2014
Best way to axe N bytes from the right?

say that i have strings that end in "text"

Code:
foo.9.text, bar.10.text, baz.11.text

and i want a C function to chop off the last four characters and replace each string with a '\0'; obviously with error-checking. Any ideas?

TIA!
# 2  
Old 08-08-2014
Lots of ideas. Lots of questions.
  1. What arguments do you want to pass to your C function?
  2. What do you want your function to return?
  3. What errors do you want to detect?
  4. How do you want errors to be reported?
  5. What have you tried?
# 3  
Old 08-08-2014
Quote:
Originally Posted by Don Cragun
Lots of ideas. Lots of questions.
  1. What arguments do you want to pass to your C function?
  2. What do you want your function to return?
  3. What errors do you want to detect?
  4. How do you want errors to be reported?
  5. What have you tried?
I want to pass the dunction strings that contain 4 alphabetics followed by a dot followed by an integer followed by a dot, and ending with the string "text".

Stripping off the bytes with a
Code:
       
while (*scp) {

        scp++;
        if (*scp == '.')
        {
           scp++;  // st the fitst "."
           break;
        }
}

gets me to the integer+"text"; what then? I want the function to return only the int. In other words, is there an easy way to get rid of the "text"?

Given
Code:
foo78.text

how to i return "78"? (i can use atoi() to turn the *chatacters* 78 into an int.
# 4  
Old 08-08-2014
Is this a homework assignment?

There are a lot of inconsistencies in the statements in your last post and you didn't answer most of my questions. Let me try once more:
  1. What is the function prototype for your function?
  2. What do you want your function to return (an integer or a string)? Your example said it should return "78" (which is a string), but you said you could use atoi() which returns an int???
  3. If you want your function to return one value, why are you passing it more than one string?
  4. What errors do you want to detect?
  5. How do you want to report errors? (Special return values, changing errno, diagnostics printed to stderr, ...)
  6. Have you read the man page for atoi()? If you have, why is the ".text" a concern?
# 5  
Old 08-08-2014
Quote:
Originally Posted by Don Cragun
Is this a homework assignment?

There are a lot of inconsistencies in the statements in your last post and you didn't answer most of my questions. Let me try once more:
  1. What is the function prototype for your function?
  2. What do you want your function to return (an integer or a string)? Your example said it should return "78" (which is a string), but you said you could use atoi() which returns an int???
  3. If you want your function to return one value, why are you passing it more than one string?
  4. What errors do you want to detect?
  5. How do you want to report errors? (Special return values, changing errno, diagnostics printed to stderr, ...)
  6. Have you read the man page for atoi()? If you have, why is the ".text" a concern?
the reason i didn't answer the questions last time is that it turns out that there were no [or few] errors to be checked for.

the prototype might be something like:

Code:
int returnInt(char *)

which would be called in a loop when the program has determined how many "xyz.NN.text" files there were. the "text" files are in each users ~/share/voice/" directory. each text file contains text of some kind. this text can be from one word such as "Hello" to possibly 50 words. (I have not tested the limit of the GTK+ 3.0 "label" widget.

the function should return the intereger vale of whatever string vale i can extract. foo.9.text would be stripped to the string "9" and one final line could easily return and int 9.

[!!] i just discovered that

Code:
 nptr = "89.text";

returns int 89. nothing in the man atoi page indicated that.

Nevertheless, if there is a way of [[easily]] stripping of the "text" i would be much obliged for some example code. ---or maybe find the src for atoi. Anyway, thanks for the clue.

PS: Homework!? I was part of the crew who turned v6 UNIX to v7 UNIX. I'm rusty but still at it ... .
# 6  
Old 08-08-2014
You haven't said what system you're using, so I can't check your man pages, but on most systems, the atoi() man page will say that atoi(ptr) behaves like (int)strtol(str, (char **)NULL, 10) and the strtol() man page clearly states that it skips over leading whitespace and then (with the arguments specified) converts a string of digits with an optional leading + or - to an integer stopping at the 1st non-digit character it finds.

Try something like:
Code:
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
int
returnInt(char *in) {
	char	*p;

	for(p = in; *p && !isdigit(*p); p++);
	return(atoi(p));
}

int
main(int argc, char *argv[]) {
	int	i;

	for(i = 1; i < argc; i++)
		printf("returnInt(\"%s\") returned %d\n", argv[i], 
			returnInt(argv[i]));
	return 0;
}

which when compiled and linked to produce a program named a.out and invoked as:
Code:
a.out abc.123.text def456xyz 789 abcdef ""

produces the output:
Code:
returnInt("abc.123.text") returned 123
returnInt("def456xyz") returned 456
returnInt("789") returned 789
returnInt("abcdef") returned 0
returnInt("") returned 0

Is this something like what you wanted to do?
# 7  
Old 08-08-2014
You said there are no [or few] possible errors. Should it be an error if:
  1. there are no digits in the given input string?
  2. the string of digits found overflows the range of values that will fit in an int?
  3. there is no trailing ".text"?
  4. there aren't at least two periods in your string?
Obviously, the code I provided last time doesn't perform any error checking. I will leave it as an exercise for the reader if any of these are important in the strings you'll be processing.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Definition of Bytes

A byte is the smallest unit of storage which can be accessed in a computer's memory- either in RAM or ROM.It also holds exactly 8 bits.But its old view one byte was sufficient to hold one 8 bit character.Modern days especially on .NET or international versions of Win 32, 16 bits is needed. ... (2 Replies)
Discussion started by: stoudtLion
2 Replies

2. Shell Programming and Scripting

Get file's first x bytes

is there a better way to do this: head -c 10000k /var/dump.log | head -c 6000k unfortunately, the "-c" option is not available on sun solaris. so i'm looking at "dd". but i dont know how to use it to achieve the same exact goal as the above head command. this needs to work on both solaris... (5 Replies)
Discussion started by: SkySmart
5 Replies

3. Shell Programming and Scripting

Shell script - entered input(1-40 bytes) needs to be converted exactly 40 bytes

hello, suppose, entered input is of 1-40 bytes, i need it to be converted to 40 bytes exactly. example: if i have entered my name anywhere between 1-40 i want it to be stored with 40 bytes exactly. enter your name: donald duck (this is of 11 bytes) expected is as below - display 11... (3 Replies)
Discussion started by: shravan.300
3 Replies

4. UNIX for Dummies Questions & Answers

X bytes of 0, Y bytes of random data, Z bytes of 5, T bytes of 1. ??

Hello guys. I really hope someone will help me with this one.. So, I have to write this script who: - creates a file home/student/vmdisk of 10 mb - formats that file to ext3 - mounts that partition to /mnt/partition - creates a file /mnt/partition/data. In this file, there will... (1 Reply)
Discussion started by: razolo13
1 Replies

5. Programming

Copying 1024 bytes data in 3-bytes chunk

Hi, If I want to copy a 1024 byte data stream in to the target location in 3-bytes chunk, I guess I can use the following script. dd bs=1024 count=3 if=/src of=/dest But, I would like to know, how to do it via a C program. I have tried this with memcpy(), that did not help. (3 Replies)
Discussion started by: royalibrahim
3 Replies

6. Shell Programming and Scripting

Error PHP Fatal error: Allowed memory size of 67108864 bytes exhausted(tried to allocate 401 bytes)

While running script I am getting an error like Few lines in data are not being processed. After googling it I came to know that adding such line would give some memory to it ini_set("memory_limit","64M"); my input file size is 1 GB. Is that memory limit is based on RAM we have on... (1 Reply)
Discussion started by: elamurugu
1 Replies

7. Shell Programming and Scripting

Printing bytes

Hi, I have packed fields for which I am trying to print bytes. when I try cut -b2 it does print the 2nd byte besides that it also prints additional byte that I am not aware off:confused: data looks something like this Input: 135 246 when I try cut -b2 it gives me 30 4A but I... (12 Replies)
Discussion started by: ahmedwaseem2000
12 Replies

8. UNIX for Dummies Questions & Answers

Files with zero bytes

Hi All, I want to find zero byte files in the given folder for the given day. I know we can use find . -size 0 -mtime 0 But is there an option for file creation.? ls -lart | grep ' 0 Apr 24' will also work. Also is there any alternative using awk ? I want to know how to use awk in... (1 Reply)
Discussion started by: preethgideon
1 Replies

9. Shell Programming and Scripting

80 bytes per line ???

I am creating ASCII file from Oracle procedure into Unix box. I undertstand there is NO CRLF as I am writing it into one complete string .. but need to know what is best way to format the file with 80bytes per line only before handing over to another program. Thanks in advance regards... (14 Replies)
Discussion started by: u263066
14 Replies

10. Shell Programming and Scripting

Remove first N bytes and last N bytes from a binary file on AIX.

Hi all, Does anybody know or guide me on how to remove the first N bytes and the last N bytes from a binary file? Is there any AWK or SED or any command that I can use to achieve this? Your help is greatly appreciated!! Best Regards, Naveen. (1 Reply)
Discussion started by: naveendronavall
1 Replies
Login or Register to Ask a Question