Jump to content

Regex View problem...


carnegiex

Recommended Posts

Dear all,

 

I have problem regex view with text file

 

Erroe Code :

--- start ----

Alias format *. invalid.

No match found in file - /etc/usersQuota for key /^192\.168\.99\.44/i

--- Finish ----

 

cat  /etc/usersQuota

[email protected]  10Mb/day 

*.         1Gb/day

192\.168\.99\.44 1Gb/day

 

My Php function regex :

 

        function IsValidAlias($alias)

        {

                if(!eregi("^[a-z0-9\_-]", $alias)) {

                        $errmsg = ALIASES_LANG_ERRMSG_ALIAS_INVALID1 . " '$alias' " . ALIASES_LANG_ERRMSG_ALIAS_INVALID2;

                        return false;

                }

 

                return true;

        }

 

Can you help me sintax regex for my case problem...

 

Thanks,

rico

 

 

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/190548-regex-view-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.