Log in

View Full Version : RegEx Case Sensitivity


ItsDrew
04-27-2012, 09:02 PM
Version 4.1.10
Options > User Registration Options > Username Regular Expression

^[A-Z][A-Za-z]+\.[A-Z][A-Za-z-]+$

I'm trying to force Firstname.Lastname or Firstname-Lastname-Lastname with the first letter being forced to a capital letter. But it seems as if the code autimacially puts the lower case i at the end of the preg_match string to ignore case.

How can I remove the "i" from the preg_match code so I can force case sensitivity?

kh99
04-28-2012, 10:50 AM
In includes/class_dm.php, function verify_username() around line 456 is this:

// check for regex compliance
if (!preg_match('#' . str_replace('#', '\#', $this->registry->options['usernameregex']) . '#siU', $username))
{



I think that's where you'd want to remove it. Another approach might be to use a plugin on the registration page to change the username that's entered, or even build it from first name/last name fields.

ItsDrew
04-30-2012, 03:23 PM
In includes/class_dm.php, function verify_username() around line 456 is this:

// check for regex compliance
if (!preg_match('#' . str_replace('#', '\#', $this->registry->options['usernameregex']) . '#siU', $username))
{



I think that's where you'd want to remove it. Another approach might be to use a plugin on the registration page to change the username that's entered, or even build it from first name/last name fields.

That worked perfectly. I just removed the 'i' from the '#siU'

Note: The file name was includes/class_dm_user.php

Thanks for your help!

kh99
04-30-2012, 03:32 PM
Note: The file name was includes/class_dm_user.php


Oops...sorry about that. It's actually in both of those files, but I don't know when the one in class_dm.php would be used.