Java Interview: Vowels Count within a String using : Java, Java 8 Streams and Google Guava library.

preview_player
Показать описание
Vowels Count within a String using : Java, Java 8 Streams and Google Guava library.

~~~Subscribe to this channel, and press bell icon to get some interesting videos on Selenium and Automation:

Follow me on my Facebook Page:

Let's join our Automation community for some amazing knowledge sharing and group discussion on Telegram:

Naveen AutomationLabs Paid Courses:
Java & Selenium:

Java & API +POSTMAN + RestAssured + HttpClient:
Рекомендации по теме
Комментарии
Автор

Excited to take this to another level of getting character wise counts.

ankeshkumar
Автор

These small concepts are very much valuable i usually keep implementing all these in my framework sometimes such small things solves a very big problem...thanks again please keep posting the videos just request you to upload some videos on appium and docker as well from the basics to advance level if possible...🙏🙂❤

shwetapandey
Автор

Can we use the general contains in filter ? like List<Character> vowels = Arrays.asList('a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U');
long count = testString.chars().filter(x ->

jobin_john
Автор

we can use lambda as well instead of overriding method:


String str ="Naveen Automation Labs";
IntPredicate vowel = t ->


long vCount

System.out.println(vCount);

@Naveen: Let me know if anything is wrong with it.

jayshridorge
Автор

Google guava library looks simple and powerful. Thanks for sharing... Keep Going...

vishalavishala
Автор

Thank you so much sir.keep uploading these kind of videos.very helpful for interviews.

lakshmidevilakshmidevi
Автор

Thanks Naveen for including Google Guava library implementation 👍😊

SarangHoley
Автор

Wonderful Google Guava library. Thank you so much!

amanuellebassi
Автор

One question but Multiple Solutions ....👍👍👍

girishchandramoharana
Автор

How to print only initials of first 2 word n 3 rd complete word.
Eg we have "I Love India"
Output should be I L India

jyotibaviskar
Автор

One More interview question
If first letter is consonant
Input :- contact
Output :- ntactco

If first letter is Vowel then

Input:- apple
Output:- plexap

pratikjain