获取索引处字符的ANSI颜色

时间:2014-11-27 07:48:31

标签: javascript regex node.js ansi-colors

我开发了couleurs NPM package,可以设置为rgb方法附加String.prototype

> console.log("Hello World!".rgb(255, 0, 0)) // "Hello World!" in red
Hello World!
undefined
> "Hello World!".rgb(255, 0, 0)
'\u001b[38;5;196mHello World!\u001b[0m'

这很好用。在索引i获得ANSI颜色/字符样式的正确方法是什么?

可能这可以用一些正则表达式进行攻击,但我不确定这是否真的很好(但是,如果有正确的实现可用,我不反对它)...我更喜欢本地方式通过访问由tty解释的字符来获取颜色/样式。

> function getStyle (input, i) { /* get style at index `i` */ return style; }

> getStyle("Hello World!".rgb(255, 0, 0), 0); // Get style of the first char
{
   start: "\u001b[38;5;196m",
   end: "\u001b[0m",
   char: "H"
}
> getStyle("Hello " + "World!".rgb(255, 0, 0), 0); // Get style of the first char
{
   start: "",
   end: "",
   char: "H"
}

当我们有多种组合风格时,事情会变得复杂:

> console.log("Green and Italic".rgb(0, 255, 0).italic())
Green and Italic
undefined
> getStyle("Green and Italic".rgb(0, 255, 0).italic(), 0);
{
   start: "\u001b[3m\u001b[38;5;46m",
   end: "\u001b[0m\u001b[23m",
   char: "G"
}
> getStyle(("Bold & Red".bold() + " but this one is only red").rgb(255, 0, 0), 0);
{
   start: "\u001b[38;5;196m\u001b[1m",
   end: "\u001b[22m\u001b[0m",
   char: "B"
}
> getStyle(("Bold & Red".bold() + " but this one is only red").rgb(255, 0, 0), 11);
{
   start: "\u001b[38;5;196m",
   end: "\u001b[0m",
   char: "u"
}
> ("Bold & Red".bold() + " but this one is only red").rgb(255, 0, 0)
'\u001b[38;5;196m\u001b[1mBold & Red\u001b[22m but this one is only red\u001b[0m'

就像我说的那样,我正在寻找一种本土方式(可能使用子进程)。

那么,如何在索引i处获得完整的ANSI样式?

2 个答案:

答案 0 :(得分:2)

有几种方法可以添加'格式化为文本,这是其中之一。问题是你将文本和样式混合到同一个对象 - 文本字符串。它类似于RTF

Here is some \b bold\b0 and {\i italic} text\par

但与Word .DOC文件的原生格式不同,后者适用于文本运行

(text) Here is some bold and italic text\r
(chp)  13 None
       4  sprmCFBold
       5  None
       6  sprmCFItalic
       6  None

- 左边的数字是具有特定格式的字符数。

后一种格式是您要查找的格式,因为您要在纯文本中索引字符。减去格式化长度将显示您感兴趣的格式。根据您要求格式化的次数,您可以只执行一次性运行,或者将格式化文本缓存到某处。

一次性运行需要检查编码字符串的每个元素,增加"文本"不在颜色字符串中的索引,并更新最后一次看到的'颜色字符串,如果是。我添加了一个兼容的getCharAt函数用于调试目的。

var str = '\u001b[38;5;196m\u001b[1mBo\x1B[22mld & Red\u001b[22m but this one is only red\u001b[0m';

const map = {
    bold: ["\x1B[1m", "\x1B[22m" ]
  , italic: ["\x1B[3m", "\x1B[23m" ]
  , underline: ["\x1B[4m", "\x1B[24m" ]
  , inverse: ["\x1B[7m", "\x1B[27m" ]
  , strikethrough: ["\x1B[9m", "\x1B[29m" ]
};

String.prototype.getColorAt = function(index)
{
    var strindex=0, color=[], cmatch, i,j;

    while (strindex < this.length)
    {
        cmatch = this.substr(strindex).match(/^(\u001B\[[^m]*m)/);
        if (cmatch)
        {
            // Global reset?
            if (cmatch[0] == '\x1B[0m')
            {
                color = [];
            } else
            {
                // Off code?
                for (i=0; i<map.length; i++)
                {
                    if (map[i][1] == cmatch[0])
                    {
                        // Remove On code?
                        for (j=color.length-1; j>=0; j--)
                        {
                            if (color[j] == map[i][0])
                                color.splice (j,1);
                        }
                        break;
                    }
                }
                if (j==map.length)
                    color.push (cmatch[0]);
            }
            strindex += cmatch[0].length;
        } else
        {
            /* a regular character! */
            if (!index)
                break;
            strindex++;
            index--;
        }
    }
    return color.join('');
}

String.prototype.getCharAt = function(index)
{
    var strindex=0, cmatch;

    while (strindex < this.length)
    {
        cmatch = this.substr(strindex).match(/^(\u001B\[[^m]*m)/);
        if (cmatch)
        {
            strindex += cmatch[0].length;
        } else
        {
            /* a regular character! */
            if (!index)
                return this.substr(strindex,1);
            strindex++;
            index--;
        }
    }
    return '';
}

console.log (str);

color = str.getColorAt (1);
text = str.getCharAt (1);
console.log ('color is '+color+color.length+', char is '+text);

返回的color仍处于原始转义编码状态。您可以通过将这些常量添加到原始map数组中来使其返回某种常量。

答案 1 :(得分:1)

我无法为您提供完整的解决方案,但这是一个草图:

  • 维护一个累积当前格式的堆栈
  • 将字符串拆分为块espace sequence | just a character
  • 遍历此块列表
  • 如果它只是一个char,则保存其索引+堆栈的当前状态
  • 如果它是一个转义,要么将相应的格式推送到堆栈,要么从中弹出格式

您还可以使用此算法将转义字符串转换为html,并使用XML方法遍历结果树。

顺便说一句,后者在反过来也会很好,这个怎么样:

console.log("<font color='red'>hi <b>there</b></font>".toANSI())