Results 1 to 4 of 4

Thread: Search character in a string

  1. #1
    Join Date
    Apr 2009
    Posts
    87

    Search character in a string

    I have written a code that is apparently simple: increase the number of "a" in a phrase written by the user but it is not working. Now I'm looking for the example which replaces a section of the current sstringtring in C program.

  2. #2
    Join Date
    May 2008
    Posts
    2,297

    Re: Search character in a string

    Replaces a section of the current string by some other content determined by the arguments passed. This is a string library that is intended to be compatible with the class string library in the C++ standard. String.Replace Method (Char, Char) Returns a new string in which all occurrences of a specified Unicode character in this instance.

  3. #3
    Join Date
    Jan 2009
    Posts
    199

    Re: Search character in a string

    Code:
    #include <string.h>
    
    char d[] = "tabl+cam";
    char *q;
    
    while ((q = strchr(d,'+')) != NULL)
    strcpy(q, q+1);

  4. #4
    Join Date
    Dec 2008
    Posts
    177

    Re: Search character in a string

    Code:
    #include <string>
    #include <iostream>
    int main() {
      string d = "This is the string which is to be search";
      cout << d << "\n";
      int start = d.find("old");
      int leng = string("old").size();
     d.replace(start, len, "new");
      cout << d << "\n";
      return 0;
    }

Similar Threads

  1. Compare character string in SQL
    By Captain Carrot in forum Software Development
    Replies: 5
    Last Post: 14-05-2010, 10:20 AM
  2. Code to search for a string
    By Allan.d in forum Software Development
    Replies: 3
    Last Post: 03-12-2009, 12:55 PM
  3. Function search in a string
    By Amandev in forum Software Development
    Replies: 3
    Last Post: 24-11-2009, 02:19 PM
  4. Search the presence of n words in a string
    By cobra2008 in forum Software Development
    Replies: 3
    Last Post: 09-10-2009, 09:50 PM
  5. Search a string in a textbox
    By GeforceUser in forum Software Development
    Replies: 4
    Last Post: 07-05-2009, 01:18 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,925,562.87731 seconds with 17 queries