3

我正在尝试将纯文本阿拉伯数字转换为东阿拉伯数字。所以基本上取1 2 3...并将它们转换为١‎ ٢‎ ٣‎...。该函数转换所有数字,包括标签中包含的任何数字,即H1.

 private void LoadHtmlFile(object sender, EventArgs e)
        {
            var htmlfile = "<html><body><h1>i was born in 1988</h1></body></html>".ToArabicNumber(); ;
            webBrowser1.DocumentText=htmlfile;
        }


    }
    public static class StringHelper
    {
        public static string ToArabicNumber(this string str)
        {
            if (string.IsNullOrEmpty(str)) return "";
            char[] chars;
            chars = str.ToCharArray();
            for (int i = 0; i < str.Length; i++)
            {
                if (str[i] >= '0' && str[i] <= '9')
                {
                    chars[i] += (char)1728;
                }
            }
            return new string(chars);
        }
    }

我还尝试仅针对 InnerText 中的数字,但它也没有工作。下面的代码也更改了标签号。

private void LoadHtmlFile(object sender, EventArgs e)
        {
            var htmlfile = "<html><body><h1>i was born in 1988</h1></body></html>" ;
            webBrowser1.DocumentText=htmlfile;
        }

        private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            webBrowser1.Document.Body.InnerText = webBrowser1.Document.Body.InnerText.ToArabicNumber();
        }

有什么建议么?

4

4 回答 4

2

您可以使用正则表达式来查找 HTML 中介于 '>' 和 '<' 字符之间的部分,并对其进行操作。这将阻止代码处理标签名称和属性(样式等)。

// Convert all English digits in a string to Arabic digit equivalents
public static string ToArabicNums(string src)
{
    const string digits = "۰۱۲۳۴۵۶۷۸۹";
    return string.Join("", 
        src.Select(c => c >= '0' && c <= '9' ? digits[((int)c - (int)'0')] : c)
    );
}

// Convert all English digits in the text segments of an HTML 
// document to Arabic digit equivalents
public static string ToArabicNumsHtml(string src)
{
    string res = src;

    Regex re = new Regex(@">(.*?)<");

    // get Regex matches 
    MatchCollection matches = re.Matches(res);

    // process in reverse in case transformation function returns 
    // a string of a different length
    for (int i = matches.Count - 1; i >= 0; --i)
    {
        Match nxt = matches[i];
        if (nxt.Groups.Count == 2 && nxt.Groups[1].Length > 0)
        {
            Group g = nxt.Groups[1];
            res = res.Substring(0, g.Index) + ToArabicNums(g.Value) +
                res.Substring(g.Index + g.Length);
    }

    return res;
}

这并不完美,因为它根本不检查标签之外的 HTML 字符说明符,例如通过 Unicode 值指定字符的构造&#<digits>;&#1777;for 1 等),并将替换其中的数字。它也不会在第一个标签之前或最后一个标签之后处理任何额外的文本。

样本:

Calling: ToArabicNumsHtml("<html><body><h1>I was born in 1988</h1></body></html>")
Result: "<html><body><h1>I was born in ۱۹۸۸</h1></body></html>"

使用您喜欢的任何代码ToArabicNums进行实际转换,或通过传入转换函数对其进行概括。

于 2013-02-14T07:03:52.223 回答
0

使用正则表达式。这是我自己使用的 JavaScript 代码:

function toIndic(n) {
    var ns = ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'];

    return n.toString().replace(/\d/g, function (m) { 
        return ns[m];
    });
}

为确保您只转换数字,您可以使用更好的正则表达式:\b[0-9]+\b

于 2013-02-14T05:55:13.427 回答
0

此功能可以将英语转换为波斯语、阿拉伯语和 ordu

function convertDigitIn(enDigit){ // PERSIAN, ARABIC, URDO
    var newValue="";
    for (var i=0;i<enDigit.length;i++)
    {
        var ch=enDigit.charCodeAt(i);
        if (ch>=48 && ch<=57
        {
            // european digit range
            var newChar=ch+1584;
            newValue=newValue+String.fromCharCode(newChar);
        }
        else
            newValue=newValue+String.fromCharCode(ch);
    }
    return newValue;
}
于 2013-02-14T06:15:44.287 回答
0

只需在文档末尾添加它,它就可以正常工作:-)

<script type="text/javascript">
    $(document).ready(function() {
        var map = ["&\#1632;","&\#1633;","&\#1634;","&\#1635;","&\#1636;","&\#1637;","&\#1638;","&\#1639;","&\#1640;","&\#1641;"]

        document.body.innerHTML = document.body.innerHTML.replace(
            /\d(?=[^<>]*(<|$))/g,
            function($0) { return map[$0] }
        );
    });
</script>
于 2017-03-05T17:24:42.757 回答