Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Autoevaluación_shenanigans {
- public static void main(String[] args) {
- String texto = "Veni;Vedi,Vinci";
- String[] trozos = texto.split("[,;.]"); // Divide el string dentro de un array, elminando
- //los caracteres introducidos en .split
- //String[] trozos = texto.split("[(<\\mayus>)]"); wtf esto no funciona
- System.out.println(trozos[0]);
- System.out.println(trozos[1]);
- System.out.println(trozos[2]);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment