これが私が思いついたものです:
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/