Top "Character-properties" questions

character-properties are a set of attributes supplied by the Unicode Standard.

Python regex matching Unicode properties

Perl and some other current regex engines support Unicode properties, such as the category, in a regex. E.g. in …

python regex unicode ucd character-properties
How do I create a Perl regex that matches non-alphanumeric characters except spaces?

I have a Perl regex /\W/i which matches all non-alphanumeric characters, but it also matches spaces which I want …

regex perl unicode character-properties non-alphanumeric
Does \w match all alphanumeric characters defined in the Unicode standard?

Does Perl's \w match all alphanumeric characters defined in the Unicode standard? For example, will \w match all (say) Chinese …

regex perl unicode internationalization character-properties
Replace Unicode Control Characters

I need to replace all special control character in a string in Java. I want to ask the Google maps …

java regex google-maps unicode character-properties
Matching Unicode letter characters in PCRE/PHP

I'm trying to write a reasonably permissive validator for names in PHP, and my first attempt consists of the following …

php regex unicode pcre character-properties
Matching only a unicode letter in Python re

I have a string from which i want to extract 3 groups: '19 janvier 2012' -> '19', 'janvier', '2012…

python regex unicode character-properties
Latin Characters check

there are some similar questions out there, but none that are quite the same or that have an answer that …

javascript regex unicode character-properties
Regular expression to match ASCII and Unicode letters

Recently I discovered, to my surprise, that JavaScript has no built-in support for Unicode regular expressions. So how can I …

javascript regex character-properties
Spilt String using Unicode delimiter

I need to split a string with "-" as delimiter in java. Ex: "Single Room - Enjoy your stay" I …

java string unicode character-properties
Match any unicode letter?

In .net you can use \p{L} to match any letter, how can I do the same in Python? Namely, …

python regex character-properties