Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class stringstartend
- {
- public static void main(String[] args)
- {
- String str = "Rangga Senatama Putra";
- System.out.println(str.startsWith("Rangga"));
- System.out.println(str.endsWith("Putra"));
- System.out.println(str.startsWith("Putra"));
- System.out.println(str.endsWith("Rangga"));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment