You are viewing limited content. For full access, please sign in.

Question

Question

Pattern match with accent

asked on September 15, 2020

Hi, I'm using Pattern Matching but the expression don't find character with accent

 

Pattern Matching

Nom : ([a-zA-Z0-9 _-]*)

 

EG1 : Nom : Rene  => Rene

EG2 : Nom : René => Ren

 

How can I include accented characters?

 

Note : I can't simply use Nom : (.*), my expression is more complicated.

 

Thanks in advance.

Regards

0 0

Answer

SELECTED ANSWER
replied on September 15, 2020

It's ok, I found myself.

Thanks anyway.

 

I'm using : NOM : ([\p{L}0-9 _-]*)

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.