Advanced RegexSolved

I tried using the Advanced Regex of the plugin, but the plugin dont muted/kicked and dont filter these words, i have in true the regex attributte.

My Regex is this: (\b[lL@]+[ aA4@]+[ mM]+[ eE3@]+[ ][ cC@]+[ uL@]+[ lL@]+[ oO0@]\b)|(\b[ pP]+[ uU@]+[ tT]+[ aA4@][ ][ mM]+[ aA4]+[ dD]+[ rR@]+[ eE3@]\b)|(\b[ hH]+[ iI1@]+[ jJ]+[ oO0@][ ][ pP]+[ uU]+[ tT]+[ aA@4]\b)

        private string regextouse = @"(\b[lL@]+[ aA4@]+[ mM]+[ eE3@]+[ ][ cC@]+[ uL@]+[ lL@]+[ oO0@]\b)|(\b[ pP]+[ uU@]+[ tT]+[ aA4@][ ][ mM]+[ aA4]+[ dD]+[ rR@]+[ eE3@]\b)|(\b[ hH]+[ iI1@]+[ jJ]+[ oO0@][ ][ pP]+[ uU]+[ tT]+[ aA@4]\b)";
 


I test the regex in the https://regexr.com/ browser and works correctly.

Could you tell me what i am doing wrong?

Solved.
does not need parentheses.
Sorry.

no problem :D ... enjoy

I never been able to get this to work so glad I have seen this.

would it be:

"Advanced - Regex to use": "\b[lL@]+[ aA4@]+[ mM]+[ eE3@]+[ ][ cC@]+[ uL@]+[ lL@]+[ oO0@]\b)|(\b[ pP]+[ uU@]+[ tT]+[ aA4@][ ][ mM]+[ aA4]+[ dD]+[ rR@]+[ eE3@]\b)|(\b[ hH]+[ iI1@]+[ jJ]+[ oO0@][ ][ pP]+[ uU]+[ tT]+[ aA@4]\b",

"Advanced - Use REGEX": true

@bushcake
Hi,

This regex works correctly :

(\b[lL@]+[ aA4@]+[ mM]+[ eE3@]+[ cC@]+[ uL@]+[ lL@]+[ oO0@]\b)|(\b[ pP]+[ uU@]+[ tT]+[ aA4@][ mM]+[ aA4]+[ dD]+[ rR@]+[ eE3@]\b)|(\b[ hH]+[ iI1@]+[ jJ]+[ oO0@][ pP]+[ uU]+[ tT]+[ aA@4]\b)

But with the spaces dont works correctly Example:( l a m e c u l o ), i try this regex with spaces and works correcly in the REGEX tester browser and in the rustadmin regex.

I tested multiple forms for use spaces in the regex with this plugin and i dont know why dont work with spaces.
Locked automatically