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

  • SEARCH
  • Home
  • 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 8376843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:31:22+00:00 2026-06-09T15:31:22+00:00

Not sure what I’m doing wrong here. But I want to change the card

  • 0

Not sure what I’m doing wrong here. But I want to change the card to the correct format.

For example given the card 1c change it to AC.

Here’s some code I’ve been playing with:

public static void main(String[] args) {

    String[] cards = {"1c", "13s"};

    for (String card : cards) {

        switch (card.toUpperCase()) {
            case "1C":
                card = card.toUpperCase().replace("1C", "AC");
                break;
            case "13S":
                card = card.toUpperCase().replace("13S", "KS");
                break;
            default:
                System.out.println(Arrays.toString(cards));
        }
    }
    System.out.println(Arrays.toString(cards));

}

Any help would be great cheers.

  • 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-06-09T15:31:24+00:00Added an answer on June 9, 2026 at 3:31 pm

    Within the loop, card is just a local variable, and reassigning it doesn’t modify the array cards. An immediate fix would be to index over the array so you can reference each element directly:

    for (int i = 0; i < cards.length; i++) {
        switch (cards[i].toUpperCase()) {
            case "1C":
                cards[i] = cards[i].toUpperCase().replace("1C", "AC");
                break;
            case "13S":
                cards[i] = cards[i].toUpperCase().replace("13S", "KS");
                break;
            default:
                System.out.println(Arrays.toString(cards));
        }
    }
    

    Edit: to answer edhedges’ comment, one would need to keep a counter variable outside the loop in order to keep using the enhanced-for syntax:

    int i = 0;
    for (String card : cards) {
        switch (card.toUpperCase()) {
            case "1C":
                cards[i] = card.toUpperCase().replace("1C", "AC");
                break;
            case "13S":
                cards[i] = card.toUpperCase().replace("13S", "KS");
                break;
            default:
                System.out.println(Arrays.toString(cards));
        }
        i++;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Not sure what I'm doing wrong, but here is the code 1: var currDoc:NotesDocument
Not sure if this is the correct Stack Exchange website but here goes.. A
Not sure what I'm doing wrong here. Just trying to make it a modal
Not sure if im just being stupid or something but here goes i work
not sure what I'm missing here, but i keep getting the error. SQLSTATE[HY093]: Invalid
Not sure what I am doing wrong. The results I get from the Accelerate
not sure what is wrong with this jquery code: http://jsfiddle.net/aCABM/ I want to to
Not sure what's going on here, but in my Rails 3 application, I type
not sure what i'm missing, but here ti go's: i have a floating left
Not sure if this belongs here because its not technically a 'programming' question, but

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.