carnegiex Posted February 1, 2010 Share Posted February 1, 2010 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 test@domain.lan 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 Quote Link to comment https://forums.phpfreaks.com/topic/190548-regex-view-problem/ Share on other sites More sharing options...
cags Posted February 1, 2010 Share Posted February 1, 2010 eregi is a deprecated function so you should really look at using preg_match instead. You will have to give a better explanation for any more details, as I don't understand the objective of your pattern. Quote Link to comment https://forums.phpfreaks.com/topic/190548-regex-view-problem/#findComment-1005088 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.