Jump to content

C Function to convert string to upper case


dhazelman

Recommended Posts

Trying to create C function to convert a String ASCII to upper case.

This is what I tried and it does not work:

static void PrefixToUpper(volatile char* Prefix, int PrefixLen)
{
    // User code starts below this comment
    for (int i  = 0; Prefix[i] != '\0' ; i++)
        {
        if(Prefix[i] >= 'a' && Prefix[i] <= 'z')
                {
                    Prefix[i] = Prefix[i] - 32;
                }
        }
    // User code ends above this comment
}

// User code starts below this comment

Tested the code in C compiler and it runs correctly:

static void PrefixToUpper(volatile char* Prefix)
{
    // User code starts below this comment
    for (int i  = 0; Prefix != '\0' ; i++)
        {
        if(Prefix >= 'a' && Prefix <= 'z')
                {
                    Prefix = Prefix - 32;
                }
        }
    // User code ends above this comment
}

int main() 
   {
   char str[] = "hmh00234";
    
   printf("String input: %s\n", str);
   PrefixToUpper(str);
   printf("String output: %s\n", str);
   }
 

 

Link to comment
Share on other sites

OK, if you are sure that the ladder code that you've shown me is being executed, then I have no idea why it doesn't work.

I could debug it better if I had the project.

You can also debug it by putting in increment after the PrefixToUpper, so you can see with Online debug (or with HMI element) that the number is being incremented (and it should increment only once). You can also store Prefix Tractor Serial No into another string tag, so you could see its value after the function was called.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...