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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:07:43+00:00 2026-06-12T11:07:43+00:00

Good evening, i hope you can help me with this problem, as I’m struggling

  • 0

Good evening, i hope you can help me with this problem, as I’m struggling to find solutions.

I have a provider of words, who give me vowelled Hebrew words , for example –

Vowelled – בַּיִת not vowelled – בית

Vowelled – הַבַּיְתָה not vowelled – הביתה

Unlike my provider, my user can’t normally enter Hebrew vowels (nor should i want him to do that). The user story is the user seeking a word in the provided words. The problem is the comparison between the vowelled and the un-vowelled words. As each is represented by a different byte array in the memory, the equals method returns false.

I tried looking into how UTF-8 handles hebrew vowels and it seems like it’s just normal characters.

I do want to present the vowels to the user, so i want to keep the string as-is in the memory, but when comparing i want to ignore them. Is there any simple way to solve this problem?

  • 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-12T11:07:45+00:00Added an answer on June 12, 2026 at 11:07 am

    You can using a Collator. I can’t tell you how exactly it’s working as it’s new to me, but this appears to do the trick:

    public static void main( String[] args ) {
        String withVowels = "בַּיִת";
        String withoutVowels = "בית";
    
        String withVowelsTwo = "הַבַּיְתָה";
        String withoutVowelsTwo = "הביתה";
    
        System.out.println( "These two strings are " + (withVowels.equals( withoutVowels ) ? "" : "not ") + "equal" );
        System.out.println( "The second two strings are " + (withVowelsTwo.equals( withoutVowelsTwo ) ? "" : "not ") + "equal" );
    
        Collator collator = Collator.getInstance( new Locale( "he" ) );
        collator.setStrength( Collator.PRIMARY );
    
        System.out.println( collator.equals( withVowels, withoutVowels ) );
        System.out.println( collator.equals( withVowelsTwo, withoutVowelsTwo ) );
    }
    

    From that, I get the following output:

    These two strings are not equal
    The second two strings are not equal
    true
    true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi and good evening, hope someone can help. I am trying to get some
Good evening. Can You help me please with some batch file? I have an
Good evening. For a project, I have to create a system. In this system,
Good evening, i need to know how can i have one .h file that
Good evening fellow coders, and thank you in advance for any help/attention. This is
Good evening, This is my 1st time on this site, I have been programming
Good Evening, The problem is that i have both xcode 3.2 and xcode 4
Good evening :-)! I have this code to use Drag & Drop method for
Good evening, I'm having an issue with Masonry. This is all my relevant code:
Good evening everyone, I was hoping you could help with an Objective-C question I

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.