473,324 Members | 2,511 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,324 software developers and data experts.

Getting the middle of a string

I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}
It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?

Thanks,
- A new C programmer
Nov 13 '05 #1
17 14276
"Olivier Bellemare" <ol***************@cgocable.ca> writes:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}


On the basis of that code, I'd recommend that you buy a book on
beginning C programming. I don't think you're ready for this
newsgroup yet. There are just too many errors in too many
categories.
--
"I don't have C&V for that handy, but I've got Dan Pop."
--E. Gibbons
Nov 13 '05 #2


Olivier Bellemare wrote:
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}
It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?

Thanks,
- A new C programmer


What do you mean by middle of a string? The example you've provided is a
little unclear.

Nov 13 '05 #3
Olivier Bellemare wrote:
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}

It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?


Remember that C subscripts start at zero.

How about something like (untested):

#include <string.h>
char *mid(char *texte,size_t depart,size_t longueur)
{ char *resultat;
size_t maximum = strlen(texte) - depart;
if (longeur > maximum) longeur = maximum;
resultat = malloc(longueur + 1);
if (resultat)
{ memcpy(resultat,texte + depart,longueur);
resultat[longueur] = '\0';
}
return resultat;
}

Don't forget to check the return value (NULL if memory couldn't
be allocated for the result); and to free() the allocated storage
when you're done with it.

--
Morris Dovey
West Des Moines, Iowa USA
C links at http://www.iedu.com/c
Read my lips: The apple doesn't fall far from the tree.

Nov 13 '05 #4
"Olivier Bellemare" <ol***************@cgocable.ca> wrote in
news:a%*****************@charlie.risq.qc.ca:
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".
I am confused ... What are the parameters 6 and 4 supposed to do? "The
middle of a string", to me, means the character that is in the middle of
the string. So, for was string whose length is an even number, this would
not exist. For a string a whose length n is an odd number, this would be
a[n/2].

It is possible you had something else in mind. In which case, you should
probably try to explain your purpose a little better.
Here is my code:
char *strmid(char *texte, int depart, int longueur)
I guess 'depart' in French means something other than 'depart' in
English. Are you trying to write a function to extract a substring
instead of actually locating the middle of a string?

By the way, you should not use the str prefix for functions you write.
Those names are reserved for the standard library.
{ char *resultat = " ";
char *temporaire = " ";
Both resultat and temporaire now point to read only memory locations.
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
And even if temporaire were pointing to a writable location, you could
write at most one character there so, ooops!
strrev(temporaire);
What?
strncat(resultat,temporaire,longueur+1);
strrev(resultat);
Wha - what?
return resultat;
}
It doesn't work properly, but I really don't understand why.
What did you expect it to do and what does it do instead?
if there's a similar code that works already, can I have it please?


The code below makes a ton of assumptions but since you asked:

#include <stdio.h>

char *substr(char *target,
const char *source,
size_t start,
size_t length) {
int i;
for(i = 0; i != length; ++i) {
target[i] = source[start + i];
}
target[i] = 0;
return target;
}

int main(void) {
char a[] = "This is a test";
char b[7];
puts(substr(b, a, 5, 6));
return 0;
}

C:\Home> gcc -Wall -O2 t.c -o t.exe

C:\Home> t
is a t

--
A. Sinan Unur
as**@c-o-r-n-e-l-l.edu
Remove dashes for address
Spam bait: mailto:uc*@ftc.gov
Nov 13 '05 #5
On 6 Dec 2003 06:37:36 GMT, in comp.lang.c , "A. Sinan Unur"
<as**@c-o-r-n-e-l-l.edu> wrote:
"Olivier Bellemare" <ol***************@cgocable.ca> wrote in
news:a%*****************@charlie.risq.qc.ca:
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".
I am confused ... What are the parameters 6 and 4 supposed to do? "The
middle of a string", to me, means the character that is in the middle of
the string.


he means a substring, The example makes that exceptionally clear
surely?
char *strmid(char *texte, int depart, int longueur)


I guess 'depart' in French means something other than 'depart' in
English.


Not trying to be rude, but the meaning of his variable names is
utterly irrelevant. And BTW depart means start in french.
By the way, you should not use the str prefix for functions you write.


absolutely.

--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.angelfire.com/ms3/bchambless0/welcome_to_clc.html>
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Nov 13 '05 #6
"Olivier Bellemare" <ol***************@cgocable.ca> wrote in message news:<a%*****************@charlie.risq.qc.ca>...
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " "; resultat is a pointer to a *read-only* piece of memory containing
blank and '\0'. char *temporaire = " "; ditto. int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr); tch tch How can you append beyond that first character... to space
which hasn't been allocated to you? strrev(temporaire); Non standard function. strncat(resultat,temporaire,longueur+1); Surely you want longeur.Why the extra character? '\0 is appended by
strncat itself. strrev(resultat);
ditto
return resultat;
} Ok here goes . First I will have a go at thinking out what I think you
are trying to do :
Lets say the string is : "abcdef"
And you use
strmid("abcdef",3,2);
then you expect two characters starting from the third charcter of the
string...more specifically you expect a pointer to the first character
of a string containing this .. in this case "cd"..right?

1. So what you do is take the first 3+2-1 characters from the string
That gives you "abcd"... The final answer you want is at the end of
this string.
2. So you reverse this to give "dcba".
Now you want the first 2 characters of this .. which you extract to
give "dc".
3. Finally you reverse this string to get your answer which is "cd".

:) Now I must admit that its quite ingeneous .. however.. there are
*some* problems :
1. strrev() is not a standard c function ... so don't rely on it.
2. Do not write to read-only string literals.. you are asking for trouble.
3. Definitely don't write into unallocated memory.
4. This is definitely not the most efficient way of going about it.
If you should still want the code written using the algorithm you have
used, it can definitely be written. Mail me if you truly want this code
which will be inefficient and unelegant.

It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?

Thanks,
- A new C programmer


char *strmid(char *text, int start, int len)
{
char *result;
int cnt;
if( ( result=malloc((len+1)* sizeof *text )) ==NULL)
{
/* Handle memory not allocated errors */
return NULL;
}
/* I'm feeling too lazy . But do handle the cases where
there is no (start+len-1)th character in text */

cnt=0;
while(cnt!=len)
{
result[cnt]=*(text+start-1+cnt);
cnt++;
}
result[cnt]='\0';
return result;
}
Nov 13 '05 #7
Pushkar Pradhan wrote:

Olivier Bellemare wrote:
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}
It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?

Thanks,
- A new C programmer


What do you mean by middle of a string? The example you've provided is a
little unclear.


He seems to mean substring. Maybe like this.

/*
Program: substr.c
Author: Joe Wright
Date: 11/17/1998

The substr function in xBase is great.
char * substr(char *string, int start, int count);

05/09/2003
In <news:comp.lang.c> Er*********@sun.com suggests the original
program is less than safe. It was also written long ago when I
was a 59 year old boy. I will attempt to address these concerns.
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

/*
Extract a substring from a character string.

char *substr(char *string, int start, size_t count);

start is the starting position in string.
If positive, it is the offset from the beginning of string.
If negative, it is the offset from the end of string.
If out of range, a NUL string is returned.

count is the number of characters to extract.
If count is == 0, or is greater than the number of characters from
start to the end of string, it is set to the number of remaining
characters and the rest of the string is returned.

Consider string = "Now is the time", 15 characters (plus '\0').
We extract "the" with start == 7 or start == -8 and count == 3.

Now consider that "time" is of interest. start will be 11. The
maximum length of the substring is len (15) minus start (11) or
4 characters. If count is 0 or > 4, make it 4.
*/

#define LEN 256

char *substr(char *string, int start, size_t count) {
static char str[LEN];
str[0] = '\0'; /* The NUL string error return */
if (string != NULL) {
size_t len = strlen(string);
if (start < 0)
start = len + start;
if (start >= 0 && start < len) {
if (count == 0 || count > len - start)
count = len - start;
if (count < LEN) {
strncpy(str, string + start, count);
str[count] = 0;
}
}
}
printf("start == %u, count == %u\n", (unsigned)start,
(unsigned)count);
return str;
}

void usage(void) {
printf("Usage: substr 'cString' nStart nCount\n"
"Note: nStart is rel-0 in C\n");
exit(0);
}

int main(int argc, char *argv[]) {
if (argc < 4) usage();
printf("%s\n", substr(argv[1], atoi(argv[2]), atoi(argv[3])));
return 0;
}
/* End of substr.c */

--
Joe Wright http://www.jw-wright.com
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 13 '05 #8
Mark McIntyre <ma**********@spamcop.net> wrote in
news:ue********************************@4ax.com:
On 6 Dec 2003 06:37:36 GMT, in comp.lang.c , "A. Sinan Unur"
<as**@c-o-r-n-e-l-l.edu> wrote:
"Olivier Bellemare" <ol***************@cgocable.ca> wrote in
news:a%*****************@charlie.risq.qc.ca:
I've tried to make a function that returns the middle of a string.
For example:
strmid("this is a text",6,4); would return "is a".
I am confused ... What are the parameters 6 and 4 supposed to do? "The
middle of a string", to me, means the character that is in the middle
of the string.


he means a substring, The example makes that exceptionally clear
surely?


It wasn't clear to me when I was first reading the post. After posting, I
remembered that some BASICs have functions left, right and mid for
extracting substrings, so his naming became clearer.
char *strmid(char *texte, int depart, int longueur)


I guess 'depart' in French means something other than 'depart' in
English.


Not trying to be rude, but the meaning of his variable names is
utterly irrelevant.


But sir, it does make a difference to me in terms of comprehending an
undocumeted function.
And BTW depart means start in french.


Thank you.

--
A. Sinan Unur
as**@c-o-r-n-e-l-l.edu
Remove dashes for address
Spam bait: mailto:uc*@ftc.gov
Nov 13 '05 #9
ol***************@cgocable.ca says...
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}

It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?


C is a very poor language for doing anything useful with strings.
Fundamentally, your problem is that you have not provided seperate space for
the resulting substring. Here's a recoding:

char *strmid (char *resultat, const char *texte, int depart, int longueur) {
memmove (resultat, texte + depart, longueur);
resultat[longueur] = '\0';
return resultat;
}

Which requires that you have made sufficient space in the variable resultat.
The problem is that simply declaring resultat = " " somewhere in your
code is not good enough, since all the space for resultat may be allocated in
non-writable memory. If you want to avoid this issue you can automatically
make writable memory available:

char *strmid (const char *texte, int depart, int longueur) {
char *resultat = (char *) malloc (longueur + 1);
memmove (resultat, texte + depart, longueur);
resultat[longueur] = '\0';
return resultat;
}

But now you have to remember to free the memory with a call to free() once you
are done with it, otherwise you will lose that memory.

Handling "strings" in C for other purposes just continues to have these kinds
of complications that require that you hand hold the implementation details
every step of the way.

An alternative is to use an alternative string library such as "the Better
String Library" (http://bstring.sf.net/) where such things are trivial. In
bstrlib you will find a function like:

bstring resultat = bmidstr (texte, depart, longueur);

which makes a seperate bstring which is a copy of the middle of a previously
defined bstring. Or alternatively:

struct tagbstring resultat;
blk2tbstr (resultat, texte->data + depart, longueur);

Lets you have a bstring defined by reference, so there is no memory management
required.

--
Paul Hsieh
http://www.pobox.com/~qed/
http://bstring.sf.net/
Nov 13 '05 #10
In article <3F***********@earthlink.net>, jo********@earthlink.net says...
#define LEN 256

char *substr(char *string, int start, size_t count) {
static char str[LEN];
[...]
return str;
}


<sarcasm>
Which is real damn useful if you try to do the following:

char a = substr ("This is a string", 6, 4);
char b = substr (a, 2, 1);
printf ("<%s>, <%s>\n", a, b);

</sarcasm>

--
Paul Hsieh
http://www.pobox.com/~qed/
http://bstring.sf.net/
Nov 13 '05 #11
Paul Hsieh wrote:
[snip...] Which requires that you have made sufficient space in the variable resultat.
The problem is that simply declaring resultat = " " somewhere in your
code is not good enough, since all the space for resultat may be allocated in
non-writable memory. If you want to avoid this issue you can automatically
make writable memory available:

char *strmid (const char *texte, int depart, int longueur) {
char *resultat = (char *) malloc (longueur + 1);
memmove (resultat, texte + depart, longueur);
resultat[longueur] = '\0';
return resultat;
}


Casting the result of a malloc() is considered bad practice by most
knowledgable C programmers, including the vast majority of the regulars
here.

Best regards,

Sidney

Nov 13 '05 #12
Olivier Bellemare wrote:

I've tried to make a function that returns the middle of a string.
For example:
strmid("this is a text",6,4); would return "is a".
I would expect it to return "s a ", if anything.

Here is my code:
char *strmid(char *texte, int depart, int longueur)
{ char *resultat = " ";
This is a pointer to a string holding one blank, which cannot be
altered. Seems fairly useless here.
char *temporaire = " ";
This is a pointer to a string holding one blank, which cannot be
altered. Seems fairly useless here.
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
strrev(temporaire);
This function does not exist in standard C.
strncat(resultat,temporaire,longueur+1);
strrev(resultat);

return resultat;
}
You also fail to define strncat via #include <string.h>. The
function name "strmid" is reserved for the implementation, i.e.
you may not use it or anything beginning with "str".

It doesn't work properly, but I really don't understand why.
Can anyone enlighten me? Or, if there's a similar code that
works already, can I have it please?


So let us design a substring extractor, say:

#include <stdlib.h> /* so we can use calloc */

char *substr(const char *s, size_t first, size_t length)
/* Notice the const, because from your usage example you plan to
use it on unalterable strings. The other parameters should be
size_t, because they can be any size available in the system, and
cannot be negative. */
{
char * result;
size_t i;

result = calloc(length+1); /* create space for result */
/* I used calloc to ensure the result is zero terminated, and
length+1 to ensure there is the extra space for that zero
termination */
i = 0;
while (length--) { /* make the copy */
result[i] = s[first + i];
++i;
}
return result;
} /* untested, and not optimum */

Undefined for length==0 and various other evils.

Since your prototype did not supply a place for the substring to
be placed, we have to allocate that space within substr. That
means that whatever calls substr must ultimately free the pointer
returned.

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!

Nov 13 '05 #13
Paul Hsieh wrote:

In article <3F***********@earthlink.net>, jo********@earthlink.net says...
#define LEN 256

char *substr(char *string, int start, size_t count) {
static char str[LEN];
[...]
return str;
}


<sarcasm>
Which is real damn useful if you try to do the following:

char a = substr ("This is a string", 6, 4);
char b = substr (a, 2, 1);
printf ("<%s>, <%s>\n", a, b);

</sarcasm>

Ok, but assigning char* to char will stop you before anything else.
--
Joe Wright http://www.jw-wright.com
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 13 '05 #14
qe*@pobox.com (Paul Hsieh) writes:
<sarcasm>
Which is real damn useful if you try to do the following:

char a = substr ("This is a string", 6, 4);
char b = substr (a, 2, 1);
printf ("<%s>, <%s>\n", a, b);

</sarcasm>

not worse than strtok ;-)

Happy C hacking
Friedrich
Nov 13 '05 #15
On 6 Dec 2003 14:58:59 GMT, in comp.lang.c , "A. Sinan Unur"
<as**@c-o-r-n-e-l-l.edu> wrote:
Mark McIntyre <ma**********@spamcop.net> wrote in
news:ue********************************@4ax.com :
On 6 Dec 2003 06:37:36 GMT, in comp.lang.c , "A. Sinan Unur"
<as**@c-o-r-n-e-l-l.edu> wrote:
I guess 'depart' in French means something other than 'depart' in
English.


Not trying to be rude, but the meaning of his variable names is
utterly irrelevant.


But sir, it does make a difference to me in terms of comprehending an
undocumeted function.


Top tip: Never rely on the variable names as documentation, especially
in code you are not familiar with. It is absolutely guaranteed to bite
you in the a*se when you least need ir. And it will always totally
fsck you over when working with multilingual programmers....

--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.angelfire.com/ms3/bchambless0/welcome_to_clc.html>
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Nov 13 '05 #16
Although it was never completed, I think you'll find that the libclc
code on sourceforge has what you need, and a lot more that you may
not need.

:-)

http://sourceforge.net/projects/libclc/

--
Randy Howard _o
2reply remove FOOBAR \<,
______________________()/ ()______________________________________________
SCO Spam-magnet: po********@sco.com
Nov 13 '05 #17
Groovy hepcat Olivier Bellemare was jivin' on Sat, 06 Dec 2003
03:25:58 GMT in comp.lang.c.
Getting the middle of a string's a cool scene! Dig it!
I've tried to make a function that returns the middle of a string. For
example:
strmid("this is a text",6,4); would return "is a".

Here is my code:
char *strmid(char *texte, int depart, int longueur)
Avoid function names beginning with "str". They are reserved
identifiers. (To be more precise, all identifiers with external
linkage beginning with "str" followed by a lower case letter are
reserved.)
{ char *resultat = " ";
char *temporaire = " ";
int nbr;

nbr = depart + longueur - 1;

strncat(temporaire,texte,nbr);
Uh oh! You've just caused undefined behaviour. First of all,
temporaire points to a string literal, which may be in memory marked
read only. You are attempting to modify this string literal. This can
cause a crash. And secondly, even if you can modify the string literal
without problems, you have another problem. Your string literal is
only 2 bytes long (one byte for the space and one byte for the
terminating null character). But you are attempting to add more bytes
to the end of it. Result: you are writing into some random memory
location. This also produces undefined behaviour.
On top of that, your string literal contains a space, and you are
attempting to append a string to the end of this string literal. So,
even if the operation succeeded, you'd end up with a space at the
start of the resulting string, which isn't in the original string. I'm
sure this is not desired.
strrev(temporaire);
There's no such function in standard C, and I don't see a
declaration of this in your code, let alone a definition. (And it's a
reserved identifier anyhow. See above.)
strncat(resultat,temporaire,longueur+1);
And once again you are attempting to modify a string literal and
write beyond the end of it. But here you have yet another problem.
Both temporaire and resultat point at a string literal with the same
content. These two string literals are allowed to be folded into one.
In that case, you're writing a string to the end of itself. This is a
big problem.
But that's not all. strncat() doesn't always append a null character
to the end of the sequence, so it may not be a string. (Remember, a
string ends with a null character.)
strrev(resultat);
See above.
return resultat;
Note: if you return (the address of the first element of) an array
with automatic duration, you will have another problem. Automatic
variables no longer exist after the function returns. String literals
have static duration, however. But, as I've already shown, string
literals cause other problems.
}

It doesn't work properly, but I really don't understand why. Can anyone
enlighten me? Or, if there's a similar code that works already, can I have
it please?


Sure, here you go. I've included functions that get the rightmost
and leftmost parts of a string too, in case you need them at some time
in the future.

#include <assert.h>
#include <stdio.h>
#include <string.h>

/* copies 'len' characters from offset 'off' of string 'src' to 'dst'
returns dst */
char *substr(char *dst, const char *src, int off, int len)
{
assert(NULL != dst);
assert(NULL != src);
assert(0 <= len);
assert(0 <= off);

sprintf(dst, "%.*s", len, src + off);
return dst;
}

/* copies rightmost 'len' characters from 'src' to 'dst'
returns dst */
char *rightstr(char *dst, const char *src, int len)
{
const char *p;
int sl;

assert(NULL != dst);
assert(NULL != src);
assert(0 <= len);

if(len >= (sl = strlen(src)))
p = src;
else
p = src + sl - len;

sprintf(dst, "%.*s", len, p);
return dst;
}

/* copies leftmost 'len' characters from 'src' to 'dst'
returns dst */
char *leftstr(char *dst, const char *src, int len)
{
assert(NULL != dst);
assert(NULL != src);
assert(0 <= len);

sprintf(dst, "%.*s", len, src);
return dst;
}

--

Dig the even newer still, yet more improved, sig!

http://alphalink.com.au/~phaywood/
"Ain't I'm a dog?" - Ronny Self, Ain't I'm a Dog, written by G. Sherry & W. Walker.
I know it's not "technically correct" English; but since when was rock & roll "technically correct"?
Nov 14 '05 #18

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

Similar topics

5
by: Penny | last post by:
Hi again, Thanks to those who helped before but I'm afraid I waisted your time and effort(especially Bob's) by not detailing the way I was trying to dynamically create the select statement. I...
5
by: Yoshitha | last post by:
Hi I am working on a web project. I have a InstallerClass in my project. While making setup ( using web setup template) for this web application, I have added a userinterface with 4...
5
by: David Requena | last post by:
Hi All, I'm trying to parse a file which has some timestamps embedded. These're expressed as a number of seconds elapsed since 01/01/1904 (macintosh time). I know OS X provides some APIs to...
2
by: Gidi | last post by:
hello, i have a datagrid and i want to deal with the string that enter on a currentCell after each KeyPress and data entering, the problem is that while i'm still at the same cell i get that the...
4
by: Mr. x | last post by:
Hello, I have declared in my program (*.aspx) something like this : <%@ Page Language="VB" Debug="true" %> .... <% dim current_view_page current_view_page = "1"
4
by: PJ6 | last post by:
I can't find any built-in way to do this. I'm assigning an HTML cell a bgcolor and want to do it from a real color FromArgb... how do I get the # string to assign it to the HTML cell? Or do I have...
9
by: CapCity | last post by:
We're rewritting an app using C# 2005 and it needs to read files in netCDF format. A dll is available for this and we've had success in calling its functions, unless it updates strings. We have...
0
by: manicmax | last post by:
Hey I have a question for u I am taking connection string from IIS like this readonly string dataSource3 =ConfigurationManager.ConnectionStrings.ConnectionString; and using this dataSource3 ...
1
by: mcmahon | last post by:
Hi, I keep getting the error " Object reference not set to an instance of an object." in relation to the line : selA = CType(lstStudents.Items(r.Index), String) Any advice/help? ...
1
by: prasanna ganesh | last post by:
why i'm getting lang.string.NumberFormatException for input string ""please help me to find solution
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
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...

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.