Advertisement
korobushk

firstuppercaseletter

Apr 21st, 2021
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package firstuppercase;
  2.  
  3. public class App {
  4.     public static void main(String[] args) {
  5.         var result = first("appmSiller");
  6.         System.out.println(result);
  7.     }
  8.  
  9.    public static char first(String str) {
  10.        if ((str==null)||(str.length() <= 1))
  11.            return 0;
  12.  
  13.         if(Character.isUpperCase(str.charAt(0))){
  14.            return str.charAt(0);
  15.         }
  16.         return first(str.substring(1));
  17.     }
  18. }  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement