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 8418001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:11:51+00:00 2026-06-10T02:11:51+00:00

So this is a portion of my code. If i entered 1111 for the

  • 0

So this is a portion of my code. If i entered ” 1111 ” for the preTranslation String, it should print out true but it prints out false. I’m guessing that .equal() cannot compare the two values but I don’t know another way. Any help?

import javax.swing.JOptionPane;
import java.util.Arrays;

public class test3
{
    public static void main ( String [] args )
    {

    String s1 = "Morse";

    // Decide whether Morse code or English
    String decide = JOptionPane.showInputDialog("Enter 'English' for Morse to English code translation and 'Morse' for English to Morse code translation. Pay attention to Caps.");

    // Enter String & decide whether to convert to Morse or English
    String preTranslation = JOptionPane.showInputDialog("Enter the words you wish to translate.");

    if ( decide.equals( s1 ))
        toMorse( preTranslation );

    else
        toEnglish( preTranslation );
    }

// Translate to Morse
public static void toMorse( String preTrans )
{
    // Initialize english letters
    char[] english = new char[3];


    // Initialize english numbers
    english[0] = 1;
    english[1] = 2;
    english[2] = 3;

    // Initialize morse characters
    String[] morse = {".","-", ".-"};

    // Replace spaces with |
    String phraseWithDelimiter = preTrans.replace( " ", "|");

    String[] translation = new String[phraseWithDelimiter.length()];
    System.out.println( phraseWithDelimiter.substring(0, 1).equals( english[0] )); // Should print out to be true
    }
}
  • 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-10T02:11:53+00:00Added an answer on June 10, 2026 at 2:11 am

    You are comparing a String object with a character (a char) so equals will always return false. If you want to get a single character from a string, use charAt method instead of substring.

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

Sidebar

Related Questions

This portion of code should returns the representation in LittleEndian of 10000000, then 128,
Why does this portion of code return true even when it shouldn't be? $stmt
This portion of code should read in two or more numbers (main io function
I want to convert this particular portion of code in C++ to python But
This portion of code checks if a number given (First element in a list)
Could someone explain to me what this portion of code means? repeat scroll 0
With ASP .NET MVC3. In my controller I have this portion of code MasterMindDnetEntities
following up from yesterday... This portion of the code does work. $(document).ready(function(){ $('#listMenu a').click(function
I am trying to make a simple alarm. in this code portion a take
Let's say we have a code portion like this: IProduct product = ProductCreator.CreateProduct(); //Factory

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.