Category: Alphanumeric
-
How to reverse each word in a sentence without using reverse method
This is the first complete solution to reverse each word in the given input line of strings. This program uses the core logic to reverse each string. This code now only accepts alphanumeric strings instead of pure integers, symbols and null strings.
-
How to find sum of digits in an alpha numeric value
This is the third solution to find sum of integers in a given alphanumeric string. This program uses the filter(), map() and reduce() methods of java streams.
-
How to extract characters and numbers from an Alphanumeric value
This is the third solution to extract characters and numbers from an alpha numeric value into separate strings. This program uses the simple predicate and predicates chaining to check for characters and numbers.
-
How to extract characters and numbers from an Alphanumeric value
This is the second solution to extract characters and numbers from an alpha numeric value into separate strings. This program scans each character and checks ASCII range of alphabets, and numbers.
-
How to extract characters and numbers from an Alphanumeric value
This is the first solution to extract characters and numbers from an alpha numeric value into separate strings. This program uses the Character class methods.
