« IRC Colors en JavaScript » : différence entre les versions

617 octets ajoutés ,  23 juin 2020 à 17:52
aucun résumé des modifications
Aucun résumé des modifications
Aucun résumé des modifications
(4 versions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
== Generator ==
https://www.wiki-irc.com/colormirctojs.html
==IRC Color Code ==
==IRC Color Code ==


Ligne 87 : Ligne 90 :
|}
|}


== Function JavaScript converter ==
<pre>
function formattingColorIRC(str) {
    // color
    str = str.replace(/\x03/g, "\\x03" );
   
    // bold
    str = str.replace(/\x02/g, "\\x02" );
   
    // italic
    str = str.replace(/\x1D/g, "\\x1D" );
   
    // underline
    str = str.replace(/\x1F/g, "\\x1F" );
   
    // swap background and foreground colors
    str = str.replace(/\x16/g, "\\x16" );
   
    return str;
}
   
   
formattingColorIRC("�0,4test"); //Result=\x030,4test
</pre>


==Mots clés==
==Mots clés==
control characters, IRC colors, IRC colours, caret notation, irc colors javascript
control characters, IRC colors, IRC colours, caret notation, irc colors javascript, converter irc colors for irc bot javascript or tcl