How do I search a string array with start with keyword?
for example,
String[] str = { "abcd", "abdc", "bcda"};
when my search string is "a" it must show
abcd and abdc
when my search string is "abc" then it should be "abcd".
String[] strArray = {"abcd", "abdc", "bcda"};
for (String s : strArray)
if (s.startsWith(searchTerm))
System.out.println(s);
Swap startsWith for contains you wish to simply look for containment.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With