Advertisement
Guest User

Reallifeguys Bot

a guest
Apr 9th, 2020
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. class Uwuifier {
  2.     public static String uwuifier(String str) {
  3.       return str.replaceAll("[rRvVtT]", "w");
  4.     }
  5. }
  6.  
  7.  
  8. class Main {
  9.     public static void main(String[] args) {
  10.         System.out.print("Insert a text you want to be UwUified: ");
  11.         String input = new java.util.Scanner(System.in).nextLine();
  12.         String uwuified = Uwuifier.uwuifier(input);
  13.         System.out.println(uwuified);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement