CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: n_techo

Search: Search took 0.03 seconds.

  1. Re: I wish to replace spaces with underscores in a sting

    I must say truthfully I like your solution the best, and am most grateful for the time you spend explaining this stuff to me.

    can I output the result to a different string with your solution like;...
  2. Re: I wish to replace spaces with underscores in a sting

    this was my solution


    name2 = g_strdup (quality);
    name2 = g_strdelimit (name2, " ", '_');

    all of 2 lines

    I included all of the code of the file I was working on, this was all I needed to...
  3. Solved, I wish to replace spaces with underscores in a string

    The code that I have submitted on this thread is a single function "darkice_config_store"

    so when I used.


    quality = (g_strdelimit (quality, " ", '_'));

    then the above code became part of...
  4. Re: I wish to replace spaces with underscores in a sting

    I found the solution and am posting here for other people if they have the same problem, I needed to replace spaces with underscores, the program uses a gtkcombo box, where you can enter, a name for...
  5. Re: I wish to replace spaces with underscores in a string

    Sorry about that I send you the wrong version of this file

    here is the code again.


    #include <stdio.h>
    #include <unistd.h>
    #include <stdlib.h>
    #include <string.h>
    #include <libintl.h>
  6. Re: I wish to replace spaces with underscores in a sting

    thankyou so much for your reply, sorry I send the wrong version of this file

    here is the code;


    #include <stdio.h>
    #include <unistd.h>
    #include <stdlib.h>
    #include <string.h>
    #include...
  7. I wish to replace spaces with underscores in a sting

    Hello experts
    maybe this is simple for you,

    I have the following function.

    void replacestring() {

    quality = quality->Replace(" ", "_");

    }
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured