Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Simple C to C++ [modified]

Simple C to C++ [modified]

Scheduled Pinned Locked Moved C / C++ / MFC
c++debuggingquestion
28 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Chris Losinger

    this works for me:

    #include <string>

    void repl(std::string &msg)
    {
    for(int i=0;msg[i];i++)
    {
    if(msg[i] == '<')
    msg.replace(i,1,"<",0,4);
    }
    }

    int _tmain(int argc, _TCHAR* argv[])
    {
    std::string f = "<title>blah</title>";

    repl(f);

    return 0;
    

    }

    image processing toolkits | batch image processing

    S Offline
    S Offline
    Software2007
    wrote on last edited by
    #13

    The same code you showed me crashes at index 25! I am running just simple console app in VS2010. It works on VS2008! Oh well! Thanks for your help

    modified on Wednesday, September 14, 2011 4:31 PM

    C 1 Reply Last reply
    0
    • S Software2007

      The same code you showed me crashes at index 25! I am running just simple console app in VS2010. It works on VS2008! Oh well! Thanks for your help

      modified on Wednesday, September 14, 2011 4:31 PM

      C Offline
      C Offline
      Chris Losinger
      wrote on last edited by
      #14

      how about a generic std::string find/replace fn:

      void repl2(std::string &str, const char *find, const char *repl)
      {
      // should probably quit if either of these are 0!
      size_t findLen = strlen(find);
      size_t replLen = strlen(repl);

      size_t index = 0;
      while (true) {
      /* Locate the substring to replace. */
      index = str.find(find, index);
      if (index == std::string::npos) break;

        /\* Make the replacement. \*/
        str.replace(index, findLen, repl);
      
        /\* Advance index forward so the next iteration doesn't pick it up as well. \*/
        index+=replLen;
      

      }
      }

      that's based on something from this thread[^].

      image processing toolkits | batch image processing

      1 Reply Last reply
      0
      • S Software2007

        Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

        #define NUL 0
        char z_buf[4095]

        void replace_html_delimiters(char *msg)
        {
        for(i=0; ; i++)
        {
        if(msg[i]== NUL)
        break;
        if(msg[i]=='<')
        {
        msg[i] = NUL;
        strcpy(z_buf,msg);
        strcat(z_buf,"<");
        strcat(z_buf,msg+i+1);//confusing me
        strcpy(msg,z_buf);
        }
        }
        }

        //C++

        <pre lang="c++">
        #define NUL 0
        char z_buf[4095]

        void replace_html_delimiters(string msg)
        {
        for(i=0; ; i++) //Why no upper limit here?
        {
        if(msg[i]== NUL)
        break;
        if(msg[i]=='<')
        {
        msg[i] = NUL;
        strcpy(z_buf,msg.c_str());
        z_buf += "<";
        strcat(z_buf,msg.rightOf[i]);
        strcpy(msg,z_buf);
        }
        }
        }</pre>

        modified on Wednesday, September 14, 2011 2:30 PM

        C Offline
        C Offline
        Chuck OToole
        wrote on last edited by
        #15

        Well, I'm not even sure the straight C code works. 'msg' is a 'char *', meaning it points to a string of characters owned by the caller of the function. Presumably that string is in some buffer allocated by the caller. When you complete the replace using the temporary 'z_buf' buffer (presumably large enough, but assume it is), you them move the new (possibly longer) string back into the buffer pointed to by 'msg'. How do you know you aren't overwriting that buffer? How do you know it's large enough to receive the replaced string? I'm just saying, you could be clobbering something important.

        1 Reply Last reply
        0
        • S Software2007

          Great, I think this is what I needed. I ma not sure about the for(int i=0;msg[i];i++) as a terminating condition. Did you mean to put something else instead of msg[i]?

          C Offline
          C Offline
          Chuck OToole
          wrote on last edited by
          #16

          for (int i=0; msg[i]; i++) is equivalent to: for (int i=0; msg[i]!=0; i++) The end condition is the character at msg[i] being the null at the end of the string. The compiler didn't like msg[i]=0 because that's an assignment, not an equality test. Need another '=' in there.

          1 Reply Last reply
          0
          • S Software2007

            Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

            #define NUL 0
            char z_buf[4095]

            void replace_html_delimiters(char *msg)
            {
            for(i=0; ; i++)
            {
            if(msg[i]== NUL)
            break;
            if(msg[i]=='<')
            {
            msg[i] = NUL;
            strcpy(z_buf,msg);
            strcat(z_buf,"<");
            strcat(z_buf,msg+i+1);//confusing me
            strcpy(msg,z_buf);
            }
            }
            }

            //C++

            <pre lang="c++">
            #define NUL 0
            char z_buf[4095]

            void replace_html_delimiters(string msg)
            {
            for(i=0; ; i++) //Why no upper limit here?
            {
            if(msg[i]== NUL)
            break;
            if(msg[i]=='<')
            {
            msg[i] = NUL;
            strcpy(z_buf,msg.c_str());
            z_buf += "<";
            strcat(z_buf,msg.rightOf[i]);
            strcpy(msg,z_buf);
            }
            }
            }</pre>

            modified on Wednesday, September 14, 2011 2:30 PM

            C Offline
            C Offline
            Chuck OToole
            wrote on last edited by
            #17

            In the C++ example, just what does

            strcpy(msg,z_buf);

            do to the string object? Assuming it compiles, are you clobbering the object? I don't use the std:: classes much, but if this were MFC/ATL CString, the strcpy argument would use a typecasting to get a pointer to the internal buffer of CString (char *) which you are *NEVER ALLOWED TO OVERWRITE*. Yet the strcpy() call does exactly that. I would imagine that std::string has a similar internal structure and would be very upset if you started overwriting its content.

            1 Reply Last reply
            0
            • S Software2007

              I send in a string "Test"; 19 characters long. The loop crashes at index 25 for(int i=0;msg[i];i++) { if(msg[i] == '<') msg.replace(i,1,"<",0,4); } The string actually becomes 25 characters after replacing '<' with //"<", so the very last iteration, it increments i to 25, it tries to check the condition msg[25], I believe it crashes since the string is only 24 chars long ?

              modified on Wednesday, September 14, 2011 4:09 PM

              C Offline
              C Offline
              Chuck OToole
              wrote on last edited by
              #18

              It is my understanding that std::string does *NOT* include a NULL ('\0') character at the end of the string. One cannot assume a null termination. So, basically you are using C style assumptions on C++ string objects. The way to deal with std::string is through the member functions string.length(), string.replace(), etc. The examples others have shown you work because they stay within the object's definition of operative functions. There is a string.c_str() member function that returns a pointer to a C style null terminated char * (http://www.cplusplus.com/reference/string/string/c_str/[^]) but that too cannot be modified by the receiving program. If you're going to convert from C to C++, you should go all the way and avoid those old char * uses and move to some string class, either std::string or MFC/ATL CString, depending on your project's needs.

              1 Reply Last reply
              0
              • S Software2007

                Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

                #define NUL 0
                char z_buf[4095]

                void replace_html_delimiters(char *msg)
                {
                for(i=0; ; i++)
                {
                if(msg[i]== NUL)
                break;
                if(msg[i]=='<')
                {
                msg[i] = NUL;
                strcpy(z_buf,msg);
                strcat(z_buf,"<");
                strcat(z_buf,msg+i+1);//confusing me
                strcpy(msg,z_buf);
                }
                }
                }

                //C++

                <pre lang="c++">
                #define NUL 0
                char z_buf[4095]

                void replace_html_delimiters(string msg)
                {
                for(i=0; ; i++) //Why no upper limit here?
                {
                if(msg[i]== NUL)
                break;
                if(msg[i]=='<')
                {
                msg[i] = NUL;
                strcpy(z_buf,msg.c_str());
                z_buf += "<";
                strcat(z_buf,msg.rightOf[i]);
                strcpy(msg,z_buf);
                }
                }
                }</pre>

                modified on Wednesday, September 14, 2011 2:30 PM

                enhzflepE Offline
                enhzflepE Offline
                enhzflep
                wrote on last edited by
                #19

                The reason there's no upper limit on "i" in either of the for loops is that this would take more code - it would require a strlen be performed once before the loop in addition to checking to see if i is equal to this length. It's less clear to read and more prone to induce error during maintenance, but I believe it to be for this reason that the way the loop is exited with a break. Not sure why you'd go the trouble of #defining NUL as 0x0.. It would be clearer if the already provided NULL was used (less code too, since there's only 4 references to 'NUL' - 4 cases of simply adding another 'L'. In any case, the executable code is identical - it is just the source-code that suffers from reduced readability, unlike the loop-terminating-condition check, which produces a smaller executable when done this way than the more readable alternative of checking the strlen first then using a terminarting condition of ichar *htmlStr = ""; replace_html_delimiters(htmlStr); while I can see this succeeding

                char *htmlStr = "";
                char htmlStrCopy = strdup(htmlStr);
                replace_html_delimiters(htmlStrCopy);
                ..
                .. other actions on htmlStrCopy
                ..
                free(htmlStrCopy);

                Add to that the fact that the "char z_buf[4095]" statement isn't terminated with a ';' in either case and you have rather a problem, considering that the C function called with a string containing "" returns the same string. Studying the function, it appears to scan through a string, quitting upon end of string (0x0), while perplexingly, when it intercepts a '<' character it copies all of the text except for this character, then it appends the '<' explicitly. It's 5am here, and I can't think of a circumstance that the output sring would be different to the input string.

                C 1 Reply Last reply
                0
                • enhzflepE enhzflep

                  The reason there's no upper limit on "i" in either of the for loops is that this would take more code - it would require a strlen be performed once before the loop in addition to checking to see if i is equal to this length. It's less clear to read and more prone to induce error during maintenance, but I believe it to be for this reason that the way the loop is exited with a break. Not sure why you'd go the trouble of #defining NUL as 0x0.. It would be clearer if the already provided NULL was used (less code too, since there's only 4 references to 'NUL' - 4 cases of simply adding another 'L'. In any case, the executable code is identical - it is just the source-code that suffers from reduced readability, unlike the loop-terminating-condition check, which produces a smaller executable when done this way than the more readable alternative of checking the strlen first then using a terminarting condition of ichar *htmlStr = ""; replace_html_delimiters(htmlStr); while I can see this succeeding

                  char *htmlStr = "";
                  char htmlStrCopy = strdup(htmlStr);
                  replace_html_delimiters(htmlStrCopy);
                  ..
                  .. other actions on htmlStrCopy
                  ..
                  free(htmlStrCopy);

                  Add to that the fact that the "char z_buf[4095]" statement isn't terminated with a ';' in either case and you have rather a problem, considering that the C function called with a string containing "" returns the same string. Studying the function, it appears to scan through a string, quitting upon end of string (0x0), while perplexingly, when it intercepts a '<' character it copies all of the text except for this character, then it appends the '<' explicitly. It's 5am here, and I can't think of a circumstance that the output sring would be different to the input string.

                  C Offline
                  C Offline
                  Chuck OToole
                  wrote on last edited by
                  #20

                  You're right in that the code looks odd but I think it was because the Code Project Editor messed it up. The OP was trying to replace the < character with the sequence ampersand-l-t, a sequence which if typed into this editor will yield a <, making the code look wrong. He's really making the string bigger with the replacements.

                  1 Reply Last reply
                  0
                  • S Software2007

                    Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

                    #define NUL 0
                    char z_buf[4095]

                    void replace_html_delimiters(char *msg)
                    {
                    for(i=0; ; i++)
                    {
                    if(msg[i]== NUL)
                    break;
                    if(msg[i]=='<')
                    {
                    msg[i] = NUL;
                    strcpy(z_buf,msg);
                    strcat(z_buf,"<");
                    strcat(z_buf,msg+i+1);//confusing me
                    strcpy(msg,z_buf);
                    }
                    }
                    }

                    //C++

                    <pre lang="c++">
                    #define NUL 0
                    char z_buf[4095]

                    void replace_html_delimiters(string msg)
                    {
                    for(i=0; ; i++) //Why no upper limit here?
                    {
                    if(msg[i]== NUL)
                    break;
                    if(msg[i]=='<')
                    {
                    msg[i] = NUL;
                    strcpy(z_buf,msg.c_str());
                    z_buf += "<";
                    strcat(z_buf,msg.rightOf[i]);
                    strcpy(msg,z_buf);
                    }
                    }
                    }</pre>

                    modified on Wednesday, September 14, 2011 2:30 PM

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #21

                    Software2007 wrote:

                    debugger would crash at msg[i] = nul in the c-like code

                    In that case msg is not a NULL terminated string. How big do you expect msg to be, do you knwow? If you do, you can add an additional check for not exceeding that length thus:

                    for(i=0; ; i++) //Why no upper limit here?
                    {
                    if(msg[i]== NUL)
                    break;
                    if(i > maxvmsglen)
                    break;
                    ...

                    The other likelyhood is that the code:

                       msg\[i\] = NUL;
                    	   strcpy(z\_buf,msg);
                    	   strcat(z\_buf,"<");
                    	   strcat(z\_buf,msg+i+1);//confusing me
                    	   strcpy(msg,z\_buf);
                    

                    is mashing up the msg buffer and overflowing it. I have rarely seen such a horrible piece of code, what is it supposed to be doing?

                    ============================== Nothing to say.

                    1 Reply Last reply
                    0
                    • S Software2007

                      Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

                      #define NUL 0
                      char z_buf[4095]

                      void replace_html_delimiters(char *msg)
                      {
                      for(i=0; ; i++)
                      {
                      if(msg[i]== NUL)
                      break;
                      if(msg[i]=='<')
                      {
                      msg[i] = NUL;
                      strcpy(z_buf,msg);
                      strcat(z_buf,"<");
                      strcat(z_buf,msg+i+1);//confusing me
                      strcpy(msg,z_buf);
                      }
                      }
                      }

                      //C++

                      <pre lang="c++">
                      #define NUL 0
                      char z_buf[4095]

                      void replace_html_delimiters(string msg)
                      {
                      for(i=0; ; i++) //Why no upper limit here?
                      {
                      if(msg[i]== NUL)
                      break;
                      if(msg[i]=='<')
                      {
                      msg[i] = NUL;
                      strcpy(z_buf,msg.c_str());
                      z_buf += "<";
                      strcat(z_buf,msg.rightOf[i]);
                      strcpy(msg,z_buf);
                      }
                      }
                      }</pre>

                      modified on Wednesday, September 14, 2011 2:30 PM

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #22

                      This works:

                      string msg = "strangebeautiful";
                      string::size_type index;
                      while ((index = msg.find('<')) != string::npos)
                      {
                      msg = msg.replace(index, 1, "<");
                      }

                      Remember that strings are immutable, they cannot be altered in-place, so each replace call returns the modified string, which you must use on the next iteration. Similarly expressions such as msg[i] = '\0'; will cause an access violation. See here[^] for all the lowdown on STL string types.

                      Unrequited desire is character building. OriginalGriff

                      O 1 Reply Last reply
                      0
                      • S Software2007

                        Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

                        #define NUL 0
                        char z_buf[4095]

                        void replace_html_delimiters(char *msg)
                        {
                        for(i=0; ; i++)
                        {
                        if(msg[i]== NUL)
                        break;
                        if(msg[i]=='<')
                        {
                        msg[i] = NUL;
                        strcpy(z_buf,msg);
                        strcat(z_buf,"<");
                        strcat(z_buf,msg+i+1);//confusing me
                        strcpy(msg,z_buf);
                        }
                        }
                        }

                        //C++

                        <pre lang="c++">
                        #define NUL 0
                        char z_buf[4095]

                        void replace_html_delimiters(string msg)
                        {
                        for(i=0; ; i++) //Why no upper limit here?
                        {
                        if(msg[i]== NUL)
                        break;
                        if(msg[i]=='<')
                        {
                        msg[i] = NUL;
                        strcpy(z_buf,msg.c_str());
                        z_buf += "<";
                        strcat(z_buf,msg.rightOf[i]);
                        strcpy(msg,z_buf);
                        }
                        }
                        }</pre>

                        modified on Wednesday, September 14, 2011 2:30 PM

                        O Offline
                        O Offline
                        Orjan Westin
                        wrote on last edited by
                        #23

                        If you want to replace the character '<' in a string with, "<", it could be done quite simply in C++ like this:

                        void replace_html_delimiters(std::string& str)
                        {
                        std::string::size_type pos = str.find("<");
                        while (std::string::npos != pos)
                        {
                        str.replace(pos, 1, "<");
                        pos = str.find("<", pos + 4);
                        }
                        }

                        Or if you want to cover the closing '>' as well:

                        void replace_html_delimiters(std::string& str)
                        {
                        std::string::size_type pos = str.find_first_of("<>");
                        while (std::string::npos != pos)
                        {
                        if ('<' == str[pos])
                        str.replace(pos, 1, "<");
                        else
                        str.replace(pos, 1, ">");
                        pos = str.find_first_of("<>", pos + 4);
                        }
                        }

                        By the way, I assume that you had &lt; in your code example, and that CodeProject converted it to < when you posted it? This can be avoided by escaping out the leading ampersand (& is also a reserved character in HTML, like < and >) like this: &amp;lt;. Otherwise, your C code would simply replace the character '<' with the character '<', with lots of copying back and forth.

                        void replace_html_delimiters(char *msg)
                        {
                        for(i=0; ; i++)
                        {
                        if(msg[i]== NUL)
                        break; // End condition, so not needed in for statement
                        if(msg[i]=='<')
                        {
                        msg[i] = NUL; // Replace found '<' with 0 to mark end of string
                        strcpy(z_buf,msg); // Copy string (up to the new end) to buffer
                        strcat(z_buf,"<"); // Add string "<" to end of buffer
                        strcat(z_buf,msg+i+1); // Add remaining string to end of buffer)
                        strcpy(msg,z_buf); // Copy back to string.
                        }
                        }
                        }

                        And that could be rewritten very effectively like this:

                        void replace_html_delimiters(char *msg)
                        {
                        // No need to do anything
                        }

                        :-)

                        1 Reply Last reply
                        0
                        • L Lost User

                          This works:

                          string msg = "strangebeautiful";
                          string::size_type index;
                          while ((index = msg.find('<')) != string::npos)
                          {
                          msg = msg.replace(index, 1, "<");
                          }

                          Remember that strings are immutable, they cannot be altered in-place, so each replace call returns the modified string, which you must use on the next iteration. Similarly expressions such as msg[i] = '\0'; will cause an access violation. See here[^] for all the lowdown on STL string types.

                          Unrequited desire is character building. OriginalGriff

                          O Offline
                          O Offline
                          Orjan Westin
                          wrote on last edited by
                          #24

                          Remember that strings are immutable This is not true in standard C++. Did you think of C# or some pre-standard implementation of STL?

                          L 1 Reply Last reply
                          0
                          • S Software2007

                            Hi, I would like to convert this function from C to C++.I attempted the conversion below, but not sure if I got it correctly. - note: debugger would crash at msg[i] = nul in the c-like code. -I also have the feeling this function can be written in 2 lines with strings! Thanks

                            #define NUL 0
                            char z_buf[4095]

                            void replace_html_delimiters(char *msg)
                            {
                            for(i=0; ; i++)
                            {
                            if(msg[i]== NUL)
                            break;
                            if(msg[i]=='<')
                            {
                            msg[i] = NUL;
                            strcpy(z_buf,msg);
                            strcat(z_buf,"<");
                            strcat(z_buf,msg+i+1);//confusing me
                            strcpy(msg,z_buf);
                            }
                            }
                            }

                            //C++

                            <pre lang="c++">
                            #define NUL 0
                            char z_buf[4095]

                            void replace_html_delimiters(string msg)
                            {
                            for(i=0; ; i++) //Why no upper limit here?
                            {
                            if(msg[i]== NUL)
                            break;
                            if(msg[i]=='<')
                            {
                            msg[i] = NUL;
                            strcpy(z_buf,msg.c_str());
                            z_buf += "<";
                            strcat(z_buf,msg.rightOf[i]);
                            strcpy(msg,z_buf);
                            }
                            }
                            }</pre>

                            modified on Wednesday, September 14, 2011 2:30 PM

                            S Offline
                            S Offline
                            Stefan_Lang
                            wrote on last edited by
                            #25

                            First, the original code should compile and work for any C++ compiler. Almost any C code should, as long as your function declarations contain the full parameter list (this was not mandatory in C, but is in C++). If the function doesn't work as intended in C++, then it didn't in C either! If your intention is to refactor the code into something that more resembles C++ coding standard, here's a few pointers: 1. Do not use #define for constants. C++ introduced the const keyword for that purpose and AFAIK ANSI C as well. #define always introduces a risk, as it replaces text without concern for the context, and therefore might break your code in places that it was not meant to affect. It's even worse when #defines are used in headers, making the replacement global. 2. Do not use magic numbers. Magic numbers are numeric or string literals that are used within the code to define array boundaries, values passed to functions, or limits used for loops. It's almost always better to instead define a constant, using a name that explains its purpose or use. There are multiple advantages of doing this: First, if you ever need to change the value you only need to change it in one place, no matter how often you used it, and no matter whether others used it in places that you don't even know of; Second, the name of the constant explains what it is, saving people the effort to somehow divine it from the context or (nonexistent) comments; Third, constant names are often easier to remember than the literals they represent. And intelligent editors will even remember these names for you. 3. Use std::string instead of C-style 0-terminated strings. They are sometimes more awkward to use, but they're fast and generally more safe. They also manage their own memory, so you don't need to allocate an arbitrarily sized buffer yourself, nor do you need to care about its deallocation. Also there are already plenty of functions available in the STL, either as member functions of std::string, or as generic functions found in algorithm:: (unfortunately though, none of them exactly reciprokes your function) 4. Be careful when using index values for std::string, or in fact any of the containers of the STL. For one, many functions in the STL require iterators, not index values; most of the time index values - if provided for a container - can be used to read (or write) an element, but nothing else! Second, checking for the end (

                            L M 2 Replies Last reply
                            0
                            • O Orjan Westin

                              Remember that strings are immutable This is not true in standard C++. Did you think of C# or some pre-standard implementation of STL?

                              L Offline
                              L Offline
                              Lost User
                              wrote on last edited by
                              #26

                              Cool Cow Orjan wrote:

                              Did you think of C#

                              Yep, my brain can only handle one language at a time. :( However, the code still works.

                              Unrequited desire is character building. OriginalGriff

                              1 Reply Last reply
                              0
                              • S Stefan_Lang

                                First, the original code should compile and work for any C++ compiler. Almost any C code should, as long as your function declarations contain the full parameter list (this was not mandatory in C, but is in C++). If the function doesn't work as intended in C++, then it didn't in C either! If your intention is to refactor the code into something that more resembles C++ coding standard, here's a few pointers: 1. Do not use #define for constants. C++ introduced the const keyword for that purpose and AFAIK ANSI C as well. #define always introduces a risk, as it replaces text without concern for the context, and therefore might break your code in places that it was not meant to affect. It's even worse when #defines are used in headers, making the replacement global. 2. Do not use magic numbers. Magic numbers are numeric or string literals that are used within the code to define array boundaries, values passed to functions, or limits used for loops. It's almost always better to instead define a constant, using a name that explains its purpose or use. There are multiple advantages of doing this: First, if you ever need to change the value you only need to change it in one place, no matter how often you used it, and no matter whether others used it in places that you don't even know of; Second, the name of the constant explains what it is, saving people the effort to somehow divine it from the context or (nonexistent) comments; Third, constant names are often easier to remember than the literals they represent. And intelligent editors will even remember these names for you. 3. Use std::string instead of C-style 0-terminated strings. They are sometimes more awkward to use, but they're fast and generally more safe. They also manage their own memory, so you don't need to allocate an arbitrarily sized buffer yourself, nor do you need to care about its deallocation. Also there are already plenty of functions available in the STL, either as member functions of std::string, or as generic functions found in algorithm:: (unfortunately though, none of them exactly reciprokes your function) 4. Be careful when using index values for std::string, or in fact any of the containers of the STL. For one, many functions in the STL require iterators, not index values; most of the time index values - if provided for a container - can be used to read (or write) an element, but nothing else! Second, checking for the end (

                                L Offline
                                L Offline
                                Lost User
                                wrote on last edited by
                                #27

                                Stefan_Lang wrote:

                                Sorry this turned out rather longer than

                                Don't apologise, it's an excellent analysis of the issues, and solution.

                                Unrequited desire is character building. OriginalGriff

                                1 Reply Last reply
                                0
                                • S Stefan_Lang

                                  First, the original code should compile and work for any C++ compiler. Almost any C code should, as long as your function declarations contain the full parameter list (this was not mandatory in C, but is in C++). If the function doesn't work as intended in C++, then it didn't in C either! If your intention is to refactor the code into something that more resembles C++ coding standard, here's a few pointers: 1. Do not use #define for constants. C++ introduced the const keyword for that purpose and AFAIK ANSI C as well. #define always introduces a risk, as it replaces text without concern for the context, and therefore might break your code in places that it was not meant to affect. It's even worse when #defines are used in headers, making the replacement global. 2. Do not use magic numbers. Magic numbers are numeric or string literals that are used within the code to define array boundaries, values passed to functions, or limits used for loops. It's almost always better to instead define a constant, using a name that explains its purpose or use. There are multiple advantages of doing this: First, if you ever need to change the value you only need to change it in one place, no matter how often you used it, and no matter whether others used it in places that you don't even know of; Second, the name of the constant explains what it is, saving people the effort to somehow divine it from the context or (nonexistent) comments; Third, constant names are often easier to remember than the literals they represent. And intelligent editors will even remember these names for you. 3. Use std::string instead of C-style 0-terminated strings. They are sometimes more awkward to use, but they're fast and generally more safe. They also manage their own memory, so you don't need to allocate an arbitrarily sized buffer yourself, nor do you need to care about its deallocation. Also there are already plenty of functions available in the STL, either as member functions of std::string, or as generic functions found in algorithm:: (unfortunately though, none of them exactly reciprokes your function) 4. Be careful when using index values for std::string, or in fact any of the containers of the STL. For one, many functions in the STL require iterators, not index values; most of the time index values - if provided for a container - can be used to read (or write) an element, but nothing else! Second, checking for the end (

                                  M Offline
                                  M Offline
                                  MicroVirus
                                  wrote on last edited by
                                  #28

                                  Stefan_Lang wrote:

                                  Sorry this turned out rather longer than intended, but I hope you will appreciate it anyway ;)

                                  Only ever apologise to yourself, for the time lost writing an excellent post ;)

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups