Click here to Skip to main content
15,919,358 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
Questionregex to replace accents Pin
Member 1489067816-Sep-21 3:50
Member 1489067816-Sep-21 3:50 
I have this regex to replace accents but it fails if the text contains "|".
string Text = "word|word2";

C#
// Regex.
System.Text.RegularExpressions.Regex replace_a_Accents = new System.Text.RegularExpressions.Regex("[á|à|ä|â]", System.Text.RegularExpressions.RegexOptions.Compiled);
System.Text.RegularExpressions.Regex replace_e_Accents = new System.Text.RegularExpressions.Regex("[é|è|ë|ê]", System.Text.RegularExpressions.RegexOptions.Compiled);
System.Text.RegularExpressions.Regex replace_i_Accents = new System.Text.RegularExpressions.Regex("[í|ì|ï|î]", System.Text.RegularExpressions.RegexOptions.Compiled);
System.Text.RegularExpressions.Regex replace_o_Accents = new System.Text.RegularExpressions.Regex("[ó|ò|ö|ô]", System.Text.RegularExpressions.RegexOptions.Compiled);
System.Text.RegularExpressions.Regex replace_u_Accents = new System.Text.RegularExpressions.Regex("[ú|ù|ü|û]", System.Text.RegularExpressions.RegexOptions.Compiled);

// Reemplaza.
Texto_Retorno = replace_a_Accents.Replace(Texto_Retorno, "a");
Texto_Retorno = replace_e_Accents.Replace(Texto_Retorno, "e");
Texto_Retorno = replace_i_Accents.Replace(Texto_Retorno, "i");
Texto_Retorno = replace_o_Accents.Replace(Texto_Retorno, "o");
Texto_Retorno = replace_u_Accents.Replace(Texto_Retorno, "u");

AnswerRe: regex to replace accents Pin
Richard Deeming16-Sep-21 4:28
mveRichard Deeming16-Sep-21 4:28 
GeneralRe: regex to replace accents Pin
Richard MacCutchan16-Sep-21 4:44
mveRichard MacCutchan16-Sep-21 4:44 
GeneralRe: regex to replace accents Pin
Richard Deeming16-Sep-21 4:55
mveRichard Deeming16-Sep-21 4:55 
GeneralRe: regex to replace accents Pin
Richard MacCutchan16-Sep-21 5:05
mveRichard MacCutchan16-Sep-21 5:05 
GeneralRe: regex to replace accents Pin
Member 1489067816-Sep-21 5:38
Member 1489067816-Sep-21 5:38 
GeneralRe: regex to replace accents Pin
Richard Deeming16-Sep-21 5:54
mveRichard Deeming16-Sep-21 5:54 
GeneralRe: regex to replace accents Pin
Member 1489067816-Sep-21 5:39
Member 1489067816-Sep-21 5:39 
AnswerRe: regex to replace accents Pin
Peter_in_278016-Sep-21 4:45
professionalPeter_in_278016-Sep-21 4:45 
QuestionRegex Match with Multiple Words, I need you to not use leading and trailing spaces. Pin
Member 1489067816-Sep-21 3:07
Member 1489067816-Sep-21 3:07 
QuestionTrying to match a string with many backslashes Pin
Florian Rammler31-Aug-21 1:35
Florian Rammler31-Aug-21 1:35 
AnswerRe: Trying to match a string with many backslashes Pin
Richard Deeming31-Aug-21 2:55
mveRichard Deeming31-Aug-21 2:55 
QuestionRegex to match exact word and dash symbol Pin
Member 1533502224-Aug-21 9:28
Member 1533502224-Aug-21 9:28 
AnswerRe: Regex to match exact word and dash symbol Pin
OriginalGriff24-Aug-21 9:32
mveOriginalGriff24-Aug-21 9:32 
GeneralRe: Regex to match exact word and dash symbol Pin
Member 1533502224-Aug-21 10:00
Member 1533502224-Aug-21 10:00 
AnswerRe: Regex to match exact word and dash symbol Pin
User 1521787324-Aug-21 17:47
User 1521787324-Aug-21 17:47 
GeneralRe: Regex to match exact word and dash symbol Pin
Member 1533502224-Aug-21 22:57
Member 1533502224-Aug-21 22:57 
GeneralRe: Regex to match exact word and dash symbol Pin
User 1521787324-Aug-21 23:32
User 1521787324-Aug-21 23:32 
GeneralRe: Regex to match exact word and dash symbol Pin
Member 1533502224-Aug-21 23:37
Member 1533502224-Aug-21 23:37 
GeneralRe: Regex to match exact word and dash symbol Pin
User 1521787325-Aug-21 0:08
User 1521787325-Aug-21 0:08 
GeneralRe: Regex to match exact word and dash symbol Pin
Member 1533502225-Aug-21 0:24
Member 1533502225-Aug-21 0:24 
GeneralRe: Regex to match exact word and dash symbol Pin
User 1521787325-Aug-21 1:11
User 1521787325-Aug-21 1:11 
QuestionProblem capturing last group in a line: CLOSED Pin
mo149222-Aug-21 13:18
mo149222-Aug-21 13:18 
AnswerRe: Problem capturing last group in a line: CLOSED Pin
Richard Deeming22-Aug-21 21:46
mveRichard Deeming22-Aug-21 21:46 
GeneralRe: Problem capturing last group in a line: CLOSED Pin
mo149223-Aug-21 6:17
mo149223-Aug-21 6:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.