Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
              
            
!

CSS

              
                
              
            
!

JS

              
                // Ejemplo 1
var texto = "A la abeja semejante, para que cause placer, el epigrama ha de ser: pequeño, dulce y punzante.";
// el patrón de busqueda
var buscar = /abeja/;
// reemplazado con otra cadena de texto
var reemplazar = "avispa";

var nuevoTexto = texto.replace(buscar, reemplazar);
// el resultado es una nueva cadena de texto donde en lugar de "abeja" aparece "avispa".
console.log(nuevoTexto);

// la cadena de texto original queda sin cambiar
console.log(texto);


// Ejemplo 2

// si utilizamos el modificador global g podemos reemplazar varias ocurrencias en el texto
console.log(
  texto.replace(/\b\w{6,8}\b/g, "pastelito")
);

// Ejemplo 3

// podemos utilizar retroreferencias ($1) que en este caso dobla la vocal encontrada 
console.log(
  texto.replace(/([aeiou])/g, "$1$1")
);


// Ejemplo 4

// el método replace puede tomar como segundo argumento una función  de retrollamada ( callback function )
console.log(
  texto.replace(/([aeiou])/g, function(encontrado) {
    return "*" + encontrado + "*"
  })
);

// Ejemplo 5

var telefonos = "Llámame a mi casa 972.555555, o a casa de mis abuelos 977.333333, o incluso a este número 979.223344. También me puedes llamar a 654.333333";

var telRex  = /(\d{3})\.(\d{6})/;

telefonos.replace(telRex, function(){  
  console.log(arguments);
});


// Ejemplo 6

var resultado = telefonos.replace(/(\d{3})\.(\d{6})/g, function(encontrado, grupo1) {
    var lugar;
    switch (grupo1) {
      case "972":
        lugar = "Girona";
        break;

      case "977":
        lugar = "Tarragona"
        break;

      case "979":
        lugar = "Palencia"
        break;

      default:
        lugar = "España"
    }
    return encontrado + " ( " + lugar + " )"
  })
console.log(resultado);

              
            
!
999px

Console