hi all
i'm working on this thing for school and i'm having a hard time with regex expressions
I need to take this
"Item No: MIDWINTERS Mid-Winter Single"
and use preg_replace so that i can use explode to toss out the header of a file
this is what i have so far
$header_replace = preg_replace ('/Item No: /', "EventTrackerTool-Begin", $tab_replace);
only problem is, i have no idea how to get the quotes and the regex into the mix of things 😕
any pointers?