Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 14, 2020 23:07
Show Gist options
  • Save parzibyte/15efc557766acf7b63528fec99ad6506 to your computer and use it in GitHub Desktop.
Save parzibyte/15efc557766acf7b63528fec99ad6506 to your computer and use it in GitHub Desktop.
cadena = "Esto es un poco de código que entienden los <strong>navegadores web como chrome 80</strong>, es para enfatizar <strong>texto</strong>";
cadenaRemplazada = cadena.replaceAll("<strong>([\\ \\w\\d]+)<\\/strong>", "<u>$1</u>");
System.out.printf("Antes:%s\nDespués:%s\n", cadena, cadenaRemplazada);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment