Freelancers Network
 
skill list top cap
Homepage
Join the Freelancer's Network
Update your details
Find a freelancer
Post a project
Find a project
Projects Archive
Post a job
Find a job
Jobs Archive
See Dan's Pages
See Andy's Pages
Link to this site
Resources
Join/Leave Forum
Forum Messages
+Additions+ Adverts
Advertising
Contact Us
Subscribe to our newsletter - enter your email address and hit return
Freelancers.net is owned and operated by Andy Stowell and Dan Winchester
skill list end cap
guru web hostcom

Find me again on Freelancers.net

RE: FN-FORUM: help with regular expressions please!

date posted 5th January 2007 17:47

Duncan Glendinning wrote:
> Right, I have a field in my database, which contains
> something of the form:
>
> Species:Cinnamonum zeylanicum
> Origin: Sri Lanka
>
> Now what I need to do is use some reg expressions to split
> the field's value into two, and save each to a different
> field, so I have:
>
> Species:Cinnamonum zeylanicum in one, and
> Origin: Sri Lanka in the other.

You could loop through the entire recordset in PHP and do something like the
following:

$str = "Species:Cinnamonum zeylanicum Origin: Sri Lanka" ;
$pattern = "/(Species|Origin):/" ;
$elements = preg_split( $pattern, $str ) ;

This will give you an array of the elements which you can then process
further as needed. The array would be:

Array
(
[0] =>
[1] => Cinnamonum zeylanicum
[2] => Sri Lanka
)

This basic pattern doesn't clean up the string and remove things like line
breaks (if there are any), or take into account whether there are case
differences in "Species:" or "species:". You'd need to extend the pattern to
do this or post-process the strings.

There may be quicker or alternative ways, but this will work via the regular
expression route.

HTH
Edward



Messages by Day
January 31st 2007
January 30th 2007
January 29th 2007
January 28th 2007
January 27th 2007
January 26th 2007
January 25th 2007
January 24th 2007
January 23rd 2007
January 22nd 2007
January 21st 2007
January 20th 2007
January 19th 2007
January 18th 2007
January 17th 2007
January 16th 2007
January 15th 2007
January 14th 2007
January 13th 2007
January 12th 2007
January 11th 2007
January 10th 2007
January 9th 2007
January 8th 2007
January 7th 2007
January 6th 2007
January 5th 2007
January 4th 2007
January 3rd 2007
January 2nd 2007
January 1st 2007


Messages by Month
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007


Messages by Year
2008
2007
2006
2005
2004
2003
2002
2001
2000