Tagged Questions
8
votes
7answers
723 views
\d only matchs 0-9 digits?
As far as I know, \d should matchs non-english digits, e.g. ۱۲۳۴۵۶۷۸۹۰ but it doesn't work properly in JavaScript.
See this jsFiddle: http://jsfiddle.net/xZpam/
Is this a normal behavior?
1
vote
4answers
51 views
Need help in the Regex issue: TypeError: cannot read property “1” from null
function numericEntityToChar(s) {
//s="登入"
console.log(s);
var chars = String.fromCharCode(s.match(/^&#(\d+);$/)[1]);
// throws uncaught exception ...
1
vote
2answers
104 views
Does python re (regex) have an alternative to \u unicode escape sequences?
Python treats \uxxxx as a unicode character escape inside a string literal (e.g. u"\u2014" gets interpreted as Unicode character U+2014). But I just discovered (Python 2.7) that standard regex module ...
7
votes
1answer
73 views
Regular expression to match boundary between different Unicode scripts
Regular expression engines have a concept of "zero width" matches, some of which are useful for finding edges of words:
\b - present in most engines to match any boundary between word and non-word ...
6
votes
2answers
70 views
Perl: How to match FULLWIDTH LATIN SMALL
I am using listadmin to manage many mailman-based mailing lists. I have a long list of subjects and from addresses set up to block spam. Recently, I received smarter spam in the sense that it uses ...
1
vote
1answer
53 views
Regular expression with Lao?
In Python I would like to display only Lao Characters in this HTML code (just only in "textarea" tag):
<font color="Red">ພິມຄໍາສັບລາວ ຫຼື ອັງກິດແລ້ວກົດປຸ່ມຄົ້ນຫາ - Enter English or Lao Then Hit ...
0
votes
0answers
30 views
Wordpress add_rewrite_rule unicode
I'm having a hard time forcing a rewrite rule with certain criteria in wordpress, and I'm really hoping that someone can help...
The URL structure for the category is as follows
...
0
votes
1answer
37 views
Can hexadecimal html be systematically converted to unicode via Javascript? [duplicate]
I have the following string for example:
"Hi I am testing a weird character Ů, its a U with a circle"
Now my string uses the html code Ů to display the U-circle. I need this however to be ...
2
votes
1answer
56 views
Substitution: “\p{Cntrl}” - “\P{Print}”
Until now I use these two substitutions before printing "$string" to the terminal.
$string =~ s/\p{Space}/ /g;
$string =~ s/\p{Cntrl}//g;
Is there something that I should consider, when I replace ...
0
votes
1answer
30 views
Why does the regex \pL+\pM+ not work with English?
Why does the regex \pL+\pM+ not work with English?
Why does the below first example results false wherein the second one results true?
System.out.println(Charset.forName("UTF-8").encode("suren")
...
8
votes
1answer
67 views
Java REGEX code to validate Indian language characters not working?
Why the following code not working(resulting false) with Indian languages?
System.out.println(Charset.forName("UTF-8").encode("అనువాద")
.asCharBuffer().toString().matches("\\p{L}+"));
...
2
votes
1answer
68 views
Regex on Unicode string is interpreted as intended by the debugger but not by the program
This is - reduced to a minimum - a program I am using to read and interpret some UTF8 text files:
use 5.012;
use utf8;
binmode STDIN, ':utf8';
binmode STDOUT, ':utf8';
while (<>) {
chomp;
...
1
vote
1answer
64 views
regular expressions and unicode
I'm trying to validate this regular expression with JavaScript. What I need it to do is check if at least 2 words are entered. By words I mean strings with any characters except some specific. ...
7
votes
1answer
65 views
Python extremely puzzling regex unicode behaviour
I use a tokenizer to split french sentences into words and had problems with words containing the french character â.
I tried to isolate the problem and it eventually boiled down to this simple fact:
...
3
votes
3answers
81 views
how to linkify unicode numbers in javascript using regex
How can I change the regex below to also select the unicode numbers? Currently only ASCII numbers are selected.
function numberfy(text) {
var urlRegex = /[+0-9]+(?:\.[0-9]*)?[0-9]{5,}/g;
...
13
votes
2answers
190 views
Strange Java Unicode Regular Expression StringIndexOutOfBoundsException
My question is quite simple yet puzzling. It could be that there is a simple switch which fixes this but I'm not much experienced in Java regexes...
String line = "💕💕💕";
...
0
votes
0answers
34 views
Mark non-spacing (MNS) Unicode category and \b
In PCRE non-spacing mark characters cause word boundary. As a result Åström string has 2 \b positions and Åström (decomposed characters) has 6 \b positions. Is it an intended behavior or a ...
16
votes
1answer
477 views
Range of UTF-8 Characters in C++11 Regex
This question is an extension of Do C++11 regular expressions work with UTF-8 strings?
#include <regex>
if (std::regex_match ("中", std::regex("中") )) // "\u4e2d" also works
std::cout ...
2
votes
1answer
76 views
Regex to Match only language chars (all language)?
I need to restrict users input only to alpha numeric chars.
If it was only in English It would be easy $[a-z]^/i
But I need to do it global e.g. for every language.
Is there any sequential unicode ...
1
vote
2answers
100 views
Latin Characters check
there are some similar questions out there, but none that are quite the same or that have an answer that works for me.
I need a javascript function which validates whether a text field contains all ...
6
votes
2answers
134 views
How can I match a string with only Chinese letters using a regex?
I want to get a regex which can only match a string consisted of Chinese character and without English or any other character. [\u4e00-\u9fa5] doesn't work at all, and [^x00-xff] would match the ...
0
votes
2answers
70 views
Finding regex, unicode patterns
I'm trying to scrape a website where unicode characters are present. I stated at the very begining -*- coding: utf-8 -*- plus I used the re.UNICODE flag
pattern = ...
-1
votes
2answers
78 views
How can I get the number of lines containing Chinese characters?
I have a very big plain text file with all kinds of languages, such as English, Japanese, Chinese... I want to get the number of lines containing Chinese characters.
I think this can be done using ...
0
votes
1answer
87 views
Replace Invalid UTF-8, Not Replace
Evening,
I have HTML files that I am cleaning. These have some invalid Unicode characters that appear in my text editor like:
/B7
I want to replace these with either the character they should be, ...
1
vote
1answer
108 views
Unicode name regex
I found many links about this, but none of them did not work me. I used \p{Letter}, it allowed space and digits.
I want Unicode Regular Expression for person name. Only letters like English, Latin, ...
1
vote
2answers
117 views
Search and replace unicode character
I'm using this search and replace jQuery script .
I'm trying to put every character in a span but it doesn't work with unicode characters.
$("body").children().andSelf().contents().each(function(){
...
2
votes
2answers
72 views
UNICODE Regex in java
In a combined regex it looks like working and it is failing when am using it in pattern. please help.
^(?=.*\\p{Nd})(?=.*\\p{L})(?!.*(.{2,})\\1).{5,12}$
this seems to be working but when I split ...
1
vote
1answer
88 views
python regex not working on string encoding
I have a string (g) on which I run a simple regex to find a number. The problem is that somehow the regex doesn't work on that string type (encoding?).
A "normal" string works however.
What am I ...
0
votes
3answers
116 views
Regexp for non-ASCII characters
Consider this snippet using regular expressions in Python 3:
>>> t = "Meu cão é #paraplégico$."
>>> re.sub("[^A-Za-z0-9 ]","",t,flags=re.UNICODE)
'Meu co paraplgico'
Why does it ...
0
votes
1answer
67 views
Using brackets and dashes in Django url regex pattern
Originally I was using the url pattern:
url(r'^poi/folder/(?P<doc_type>\w+)/$', ...)
to capture the doc_type parameter which was a string being pulled from a django models.CharField, ...
1
vote
3answers
73 views
How do I omit lines that contain Unicode NULL (U+0000)?
I am reading a file and am wondering how to skip lines that have Unicode NULL, U+0000? I have tried everything below, but none works:
if($line)
chomp($line)
$line =~ s/\s*$//g;
3
votes
5answers
134 views
Python regex to match non-ascii names
I'm trying to validate name fields with the re module.
\w doesn't match non-ascii chars such as à.
It seems that in many other regex engines, the solution would have been \p{L}, but this isn't ...
0
votes
1answer
47 views
Search repeated Chinese chracters in a plain text with regex?
First i know match chinese unicode should use
[\x{4e00}-\x{9fa5}]
Then i use group and backreference
([\x{4e00}-\x{9fa5}])\1
But the result is adjacency, like "中中".
I need all the character ...
1
vote
1answer
86 views
match hebrew character at word boundary via regex in javascript?
I'm able to match and highlight this Hebrew letter in JS:
var myText = $('#text').html();
var myHilite = myText.replace(/(\u05D0+)/g,"<span class='highlight'>$1</span>");
...
3
votes
1answer
114 views
Strip non ascii chars but allow currency symbols
I am using below regex to strip all non-ascii characters from a string.
String pattern = @"[^\u0000-\u007F]";
Regex rx = new Regex(pattern, RegexOptions.Compiled);
rx.Replace(data," ");
However, i ...
6
votes
2answers
166 views
How to emulate word boundary when using unicode character properties?
From my previous questions Why under locale-pragma word characters do not match? and How to change nested quotes I learnt that when dealing with UTF-8 data you can't trust \w as word-char and you must ...
2
votes
2answers
55 views
Word capture failing wrong on unicode, how to fix for 5.10
I have this regular expresion.
my ( $word ) = $_ =~ /(\w{2,})/xms;
it fails to capture a word that has unicode properly. I was able to fix it doing
my ( $word ) = $_ =~ /(\w{2,})/uxms;
but the ...
-1
votes
1answer
65 views
How to use regex in not ASCII strings?
I have this code:
opendir(DIR, ".");
while (readdir DIR) {
print $1, "\n" if $_ =~ /(\w+)/i;
}
It gets only ASCII strings of course. How can I get another non ASCII strings in output with using ...
0
votes
1answer
91 views
Unicode to String in java but tricky
I was fetching data from a website using its API which was returning the data in JSON format.
The issue was when there where some umlaut characters in the JSON. It would return its UNICODE, for e.g. ...
0
votes
2answers
324 views
PHP preg_replace match special characters but not utf8 letters
I have some titles, for example:
should? be fenêtre!
ﻟﻔﺮﻧﺴﻴﺔ-تعاني!!!
What regex expression can i use to remove special characters like: ?,!,^
I need to get those titles like this:
...
0
votes
2answers
102 views
Vim replace with unicode character
I've seen hints on how to search for unicode characters in vim using :help regexp and \%u , but I have not been able to figure out how to replace text with a hex-defined unicode character.
The ...
0
votes
2answers
95 views
How to convert some character into five digit unicode one in Python 3.3?
I'd like to convert some character into five digit unicode on in Python 3.3.
For example,
import re
print(re.sub('a', u'\u1D15D', 'abc' ))
but the result is different from what I expected.
Do I ...
0
votes
4answers
278 views
Replace unicode matches in javascript
I would like to replace the matched words/characters found in a search, for example if I search for a and I get the result ádám, I would like to highlight the á's. Something like:
...
0
votes
1answer
131 views
perl - how to validate japanese numbers using regex?
bellow I attach my script in perl. I am testing the number 1234 with one equivalent in Japanese
(I copied from Wikipedia... maybe it is not 100% correct).
Using
\p{decimal number}+
\p{Number}+
\d+
...
0
votes
1answer
61 views
Detect Russian characters with grep
I'm trying to detect Russian characters with grep, but what I have at the moment does not appear to be doing anything:
echo "Ёё" | grep -Eo "/[А-Яа-яЁё]/u"
No output is returned. Is there ...
3
votes
4answers
191 views
Regex to get list of all words with specific unicode graphemes
I'm writing a Python script for a FOSS language learning initiative, and my Regex skills are weak. Let's say I have an XML file (or to keep it simple, a Python list) with a bunch of words in a ...
1
vote
1answer
123 views
Changing Unicode Wide Characters to ASCII
I am working with text that comes from a variety of different countries and thus languages. There is an amount of text that uses "wide" format characters. They superficially look like standard ASCII ...
1
vote
1answer
235 views
Javascript Unicode Escaping Backslash [duplicate]
Possible Duplicate:
How do I decode a string with escaped unicode?
I'm having a javascript variable, in which i have stored a unicode character.
var value = "\\u53d3\\u5f13\\";
I'm ...
1
vote
1answer
126 views
Does MySQL Regexp support Unicode matching
Does anyone know if Mysql's regexp supports unicode? I've been doing some research and the majority of blogs etc. seem to indicate that there is a problem or its not supported. I'm wondering then is ...
1
vote
1answer
63 views
\b modifier won't work for Unicode characters
I want to replace an exact word using preg_replace by \b modifier as mentioned in this question.
But it seems that won't work for Unicode characters such as Persian and Arabic. This example works:
...
