Tagged Questions
0
votes
1answer
64 views
How to use trim() text LPWSTR type in WIN32 API
I have: LPWSTR str=" Nguyen Phong Sac "
How to trim str.
It means: str="Nguyen Phong Sac"
1
vote
3answers
88 views
Trim end of char *
Having char double[] = "1.2345678"; , I have to trim all digits in 4nd place and above after the . in this char * i.e make it to "1.234" .
0
votes
1answer
117 views
read a file and remove characters using C
I am struggling with read a file and remove some characters in the line, I can remove characters any how, but the char * contain so many unknown things.
this is inside of my file. just a one line
...
0
votes
1answer
95 views
C trim program isn't working [closed]
I am new programmer.
Can you please help me why this C test program isn't working?
It's supposed to be a trim fuction:
#include <stdio.h>
#define MAX 1000
void main(){
char line[MAX];
...
4
votes
4answers
365 views
Shrink int array C
Just started to learn C and came across the following issue:
I need to shrink an integer array in C, removing elements at the end. By removing I mean freeing. The common answer is to allocate new ...
0
votes
2answers
83 views
touble trimming a string in c
I am using this question as a guide to trimming a string in C. It works properly on a string bounded exclusively by whitespaces (' '), but on special whitespaces ('\r', '\n', '\t', etc.), it fails. ...
2
votes
2answers
134 views
is memmove necessary for trim function in C?
I was reading a wikipedia article on Trimming and saw this implementation of ltrim (left trim)
char *
ltrim(char *str)
{
char *ptr;
int len;
for (ptr = str; *ptr && ...
-2
votes
1answer
166 views
how to improve this trim-half-string algorithm
I have simple algorith that clean the whitespace from half string until end. Here is:
char a[] = "abc "; /* The string to string to trim. */
printf("orginal [%s]\n", a);
char * org = ...
0
votes
4answers
453 views
String trimming causes memory leak?
I'm curious what the proper way to trim a string is to ensure that no memory leak occurs. I guess this may really be a question based on exactly how free() works. I've included the code for my ...
2
votes
2answers
2k views
Trim function in C, to trim in place (without returning the string)
I can't figure out what to do to make this work. Here's my code:
char* testStr = " trim this ";
char** pTestStr = &testStr;
trim(pTestStr);
int trim(char** pStr)
{
char* str ...
4
votes
7answers
1k views
Writing String.trim() in C [duplicate]
Possible Duplicates:
Painless way to trim leading/trailing whitespace in C?
Trim a string in C
Hi guys,
I was writing the String trim method in c and this is the code I came up with. I ...
5
votes
11answers
11k views
Best algorithm to strip leading and trailing spaces in C
What is the best approach in stripping leading and trailing spaces in C?
48
votes
19answers
55k views
How do I trim leading/trailing whitespace in a standard way?
Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common ...
