Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6758803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:50:51+00:00 2026-05-26T13:50:51+00:00

I need to convert all values in a structure (arguments passed into a function)

  • 0

I need to convert all values in a structure (arguments passed into a function) to uppercase.

I wrote the following method, but rather than replace the argument with the formatted one, it is creating a new key to the arguments struct (e.g. for first loop, it creates a key of ‘1’ with the value of arguments[1], next loop creates a new key of ‘2’ with the value of arguments[2] and so on.

Can anyone suggest how I can change the value of each key in the struct?

The code kind of shows what I am trying to do, but let me know if you need more info.

public function formatValues(){

        numArgs = structCount(arguments);
        for (i=1; i<=numArgs ; i=i+1){
            arguments[i] = Ucase(arguments[i]);
        }

        return arguments;

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T13:50:52+00:00Added an answer on May 26, 2026 at 1:50 pm

    Try this:

    public function formatValues(){
        for (var i in arguments){
            if( isSimpleValue( arguments[i] ) ){
                arguments[i] = ucase( arguments[i] );
            }
        }
        return arguments;
    }
    writeDump(formatValues(name="moo",city="baa"));
    writeDump(formatValues("moo","baa"));
    

    This will work with named arguments and non-named arguments. It also will only modify simple values (strings, numbers, etc) and not complex variables (arrays, structures, objects)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to convert all of the following forms into .NET Uri object: hello.world
I need to convert all DateTime values to String, though out my project, all
I need to convert one array structure into another array structure. I hope someone
Using C#, I need to convert incoming datetime values into UTC. I know there
I need to use sed to convert all occurences of ##XXX## to ${XXX} .
I need the Perl regex to parse plain text input and convert all links
I need to convert NSString in unicode to NSString in ASCII changing all local
I need to convert tons of pictures, coming from all kinds of sources, in
I need to convert latitude/longitude coordinates into Easting/Northing coordinates in the Alberta 10 TM
I need to convert HTML documents into valid XML, preferably XHTML. What's the best

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.