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;
}

Unicode 値で文字を指定するためのコンストラクト&#<digits>;( ۱ など)など、タグの外側の HTML 文字指定子をまったくチェックせず、これらの数字を置き換えるため、これは完全ではありません。&#1777;また、最初のタグの前または最後のタグの後の余分なテキストは処理されません。

サンプル:

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

この関数は、英語をペルシア語、アラビア語、オルドゥ語に変換できます

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 に答える