14/12/2013, 13:32
|
| | | Fecha de Ingreso: diciembre-2013
Mensajes: 10
Antigüedad: 11 años, 1 mes Puntos: 0 | |
Respuesta: Como hago esto? (array's) Cita:
Iniciado por Lynxcraft si utilizas nombre de funciones encierralas ente comillas simples
Código Javascript :
Ver original<script> var BuscarExpresion = ['new', 'for', 'switch', 'case', 'sizeof', 'public', 'return', 'if', 'else', 'while', 'true', 'false', 'double', 'try', 'void']; for(var n in BuscarExpresion ) Texto = Texto.RemplazarArray(new RegExp("/\b"+BuscarExpresion[n]+"\b/","g"), ColorearExp); </script>
Muchas gracias solo hay un problema xD no lo colorea, lo puse así:
Código Javascript :
Ver originalvar BuscarExpresion = ['new', 'for', 'switch', 'case', 'sizeof', 'public', 'return', 'if', 'else', 'while', 'true', 'false', 'double', 'try', 'void', 'char', 'enum', 'static', 'using', 'namespace', 'unsigned', 'const', 'struct', 'break', 'continue']; for(var n in BuscarExpresion ); Texto = Texto.RemplazarArray(new RegExp("/\b"+BuscarExpresion[n]+"\b/","g"), "<span class='AZUL'>"+BuscarExpresion[n]+"</span>");
|