Looping through Strings in Java

Опубликовано: 24 Июнь 2023
на канале: Logic Lambda
766
6

0:05 - Discussion
1:11 - A Java program with a String & printing double-quotes
1:50 - Writing a loop that prints each character in the String one-by-one
2:36 - Adding additional output for each character
3:05 - Counting spaces in the string (note we do this inside the same loop)
3:35 - Printing the Unicode/ASCII value of a character
4:28 - Encrypting a string with a simple shift-by-one
5:20 - Getting a list of the helper methods in Character - these can be used to analyze Strings in loops