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 [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 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. Link to comment https://forums.phpfreaks.com/topic/190548-regex-view-problem/#findComment-1005088 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.