Guest User

Untitled

a guest
Jan 7th, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. public String generateFullName(){ // Generate the name
  2.         String teamPattern =  "[MW3-%s]";
  3.         String teamName = "apple";
  4.         return teamPattern.formatted(teamName); // <- Gets saved on a remote location
  5. }
  6.  
  7. public String extractTeamName(String fullName, String teamPattern) {
  8.     //return ?
  9. }
Advertisement
Add Comment
Please, Sign In to add comment