I want to search a hash map depending on the user input. Suppose a user give value 'A',I have to display starting with A company name and if user give value 'AB' I have to display starting with AB company name. I am storing company name in hash map
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||
|
|
|
Hash maps are only really good at finding exact matches based on some idea of equality which can be appropriately hashed. Two options:
|
|||
|
|
|
You can loop over the keyset and check each key. For example:
Or, you can loop over the entries in the map.
|
||||
|
|
|
you should look into regex (regular expressions) http://download.oracle.com/javase/tutorial/essential/regex/ your company names are Strings then you can use
|
|||||||||||
|
