3

これはおそらくトリッキーなものです。正規表現を使用して、括弧内のアラビア数字(1、2、または3つのアラビア数字)と括弧自体をここで選択したいと思います:http://jsfiddle.net/QL4Kr/

<span>
    كهيعص ﴿١﴾
</span>
<span>
    وَإِلَيْهِ تُرْ‌جَعُونَ ﴿٢٤٥﴾
</span>​
jQuery(function () {    
    var oldHtml = jQuery('span').html();
    var newHtml = oldHtml.replace("","");
    jQuery('span').html(newHtml); });​
4

1 に答える 1

3

これが私が思いついたものです:

jQuery(function() {

    /* Arabic digits representation in Unicode
       See: http://stackoverflow.com/a/1676590/114029 */
    var myregex = /[\u0660-\u0669]+/;

    $('span').each(function(index) {

        var text = $(this).text();

        var matches = text.match(myregex);

        alert(index + ': ' + $(this).text());

        alert(matches);

    });

});

これがjsFiddleで遊ぶためのものです:http://jsfiddle.net/leniel/YyAXP/


それぞれの中に数字だけを保持する修正バージョンは次の<span>とおりです。

jQuery(function() {

    var myregex = /[\u0660-\u0669]+/;

    $('span').each(function(index) {

        var text = $(this).text();

        $(this).text('');

        var matches = text.match(myregex);

        $(this).text(matches); 

    });

});

jsFiddle: http: //jsfiddle.net/leniel/YyAXP/1/


誤解を正すために、これがまさにあなたが望むことをする新しいバージョンです:

jQuery(function() {

    var myregex = /[﴾\u0660-\u0669﴿]+/;

    $('span').each(function(index) {

        var text = $(this).text();

        $(this).text('');

        var matches = text.match(myregex);

        var content = text.replace(myregex, '');

        //alert(content);
        //alert(index + ': ' + $(this).text());
        //alert(matches);

        var newSpan = document.createElement('span');

        $(newSpan).text(matches);

        $(this).text(content);

        $(newSpan).prependTo($(this));
    });
});

対応するjsFiddleはここにあります:http://jsfiddle.net/leniel/YyAXP/2/


これがあなたの最後の要件変更であることを願っています!:-)

var myregex = /([\u0660-\u0669]+)/g;

var parenthesis = /[﴾﴿]+/g;

var text = $("#sentences");

//alert(content);
//var matches = $(text).text().match(myregex);
//alert(text.html());

text.html(function(i, oldHTML) {

    return oldHTML.replace(parenthesis, '').replace(myregex, '<span>$1</span>');
});

これがjsFiddleです:http://jsfiddle.net/leniel/G4SkV/4/

于 2012-10-17T15:48:56.760 に答える