Trying to convert the following two eregi statements to their preg counterparts:
eregi("/F \(([^)]*)\)",$In,$DataOut);
eregi("/T \(([^)]*)\) /V \(([^)]*)\)",$In,$DataOut);
So I tried adding in delimiters:
preg_match("//F \(([^)]*)\)/",$In,$DataOut);
Unfortunately this does not work and produces Unknown modifier errors. Can I get help on what the preg versions of these two expressions might be?