Jump to content

simple preg_match help needed


amazinggrace1983

Recommended Posts

This will probably take 2 seconds for anyone else, but I've been thrown in the deep end so please help.
Basically, I create a string (its a file name), called file, which has the form ddmmmyy_number of anodes, eg. 22aug06_twoanodes or 03jul06_allanodes.

I need to check the file names are of the right format, using preg_match. Can anyone please tell me what needs to go in it?? I know it's something like

preg_match("/[\0123]\d\$month\[0][6789]\_$ANODE$/", $file)

but can I really just use $month and _$ANODE?? (these are arrays, created already)

Please please help. Very urgent!!!!
Grace 
Link to comment
Share on other sites

This does not consider invalid dates.

[code]
<pre>
<?php

$months = array(
'jan', 'feb', 'mar', 'apr', 'may', 'jun',
'jul', 'aug', 'sep', 'oct', 'nov', 'dec'
);
$anodes = array(
'two', 'all'
);

$tests = array(
'22aug06_twoanodes',
'03jul06_allanodes' ,
'01xxx08_noanodes',
'invalid_string',
);

foreach ($tests as $test) {
echo "<b>Checking $test...</b><br />";
if (!preg_match('/^\d{2}([a-z]{3})\d{2}_(.+?)anodes$/', $test, $matches)) {
echo "Invalid file name.<br />";
}
if (! in_array($matches[1], $months)) {
echo "Invalid month.<br />";
}
if (! in_array($matches[2], $anodes)) {
echo "Invalid anode type.<br />";
}
}
?>
</pre>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.