Thanks!
That's a big help.
- Craige
Jim Lucas wrote:
Craige Leeder wrote:
Hey guys,
I'm trying to write a regular expression to match a tag for my
frameworks template engine. I seem to be having some trouble. The
expression should match:
{:seg 'segname':}
{:seg 'segname' cache:}
What
Craige Leeder schreef:
> Hey guys,
>
> I'm trying to write a regular expression to match a tag for my
> frameworks template engine. I seem to be having some trouble. The
> expression should match:
>
> {:seg 'segname':}
> {:seg 'segname' cache:}
>
> What I have is...
>
> $fSegRegEx = "#\{:seg
Craige Leeder wrote:
Hey guys,
I'm trying to write a regular expression to match a tag for my
frameworks template engine. I seem to be having some trouble. The
expression should match:
{:seg 'segname':}
{:seg 'segname' cache:}
What I have is...
$fSegRegEx = "#\{:seg \'[a-z0-9\-\_]{3,}\'(
On Fri, November 4, 2005 12:09 pm, conditional motion wrote:
> New to php so please bear with me. I'm trying to parse through a
> field that has some information in it, the information is stored with
> other information and is delimited in a certain pattern so I figure
> using reg ex I can get the
On Fri, 04 Nov 2005 14:09:06 -0500, conditional motion wrote:
> Here is what the field content from the database would look like. I have
> removed any sensitive data.
>
> str = "Name;Grill Transom (GT302)^% -
> Sort;Find/Replace^% - Calc;2568.09x^% -
> Type;;;
explode on this first: '^% -'
then probably on explode ';' like Jay mentioned.
then you can probably massage the really weird stuff into shape
somehow, stuff like (wtf :-)):
Back Number
Font;%Athletic^Athletic
..hth
conditional motion wr
Whos responsible for putting all that information into one field. LOL
On 11/4/05, conditional motion <[EMAIL PROTECTED]> wrote:
> The name like "Roch Small Sum" and others dont change, they will be in
> there whether there is a value associated with them or not.
>
>
> On 11/4/05, conditional moti
The name like "Roch Small Sum" and others dont change, they will be in
there whether there is a value associated with them or not.
On 11/4/05, conditional motion <[EMAIL PROTECTED]> wrote:
> Here is what the field content from the database would look like. I
> have removed any sensitive data.
>
Here is what the field content from the database would look like. I
have removed any sensitive data.
str = "Name;Grill Transom (GT302)^% -
Sort;Find/Replace^% - Calc;2568.09x^% -
Type;Veck^% - PO Number;^% - Previous Order
Number;^%%
[snip]
The problem with that is there are about 40 different listings in the
one field.
Silver Small Corp;X^%\n#\n
Gold Medium Corp;RE^%\n#\n
Platinum Large Corp;YRE^%\n#\n
being three of them so maybe this is a bettter way of listing it
... Silver Small Corp;
[snip]
New to php so please bear with me. I'm trying to parse through a field
that has some information in it, the information is stored with other
information and is delimited in a certain pattern so I figure using reg
ex I can get the information I want out of the text.
So here is an example.
The problem with that is there are about 40 different listings in the
one field.
Silver Small Corp;X^%\n#\n
Gold Medium Corp;RE^%\n#\n
Platinum Large Corp;YRE^%\n#\n
being three of them so maybe this is a bettter way of listing it
... Silver Small Corp;X^%
[snip]
New to php so please bear with me. I'm trying to parse through a
field that has some information in it, the information is stored with
other information and is delimited in a certain pattern so I figure
using reg ex I can get the information I want out of the text.
So here is an example.
Sent: Thursday, December 06, 2001 5:13 PM
To: Jack Dempsey; PHP list
Subject: RE: [PHP] Reg ex help-Removing extra blank spaces before HTML
output
OK, this time the \n worked. The only thing I changed was using /
delimiters instead of | delimiters in the search string. No idea if/why
that would a
OK, this time the \n worked. The only thing I changed was using / delimiters instead
of | delimiters in the search string. No idea if/why that would affect anything in
the replacement string.
Anyway, I finally came up with exactly what I wanted:
preg_replace(array("/\s*\n+\s*/", "/[ ]+/"), ar
]
Sent: Thursday, December 06, 2001 1:56 PM
To: Jack Dempsey
Subject: RE: [PHP] Reg ex help-Removing extra blank spaces before HTML
output
At 11:41 AM 12/6/01 -0500, Jack Dempsey wrote:
>using "\n" as your replacement text will do ithowever, if you want a
>newline in the html, then
gular expressions as well.its worth the money
jack
-Original Message-
From: Ken [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 06, 2001 3:08 AM
To: Jack Dempsey; liljim; PHP list
Subject: RE: [PHP] Reg ex help-Removing extra blank spaces before HTML
output
At 02:43 PM 12
At 02:43 PM 12/5/01 -0500, Jack Dempsey wrote:
>$t = preg_replace('/\s+/',' ',$text);
One more thing:
How do I replace with newline instead of a space? I read through the manuals but
couldn't grasp how to do this. \n didn't cut it.
And, more advanced -
The above replaces any groups of 2 or m
sday, December 05, 2001 2:01 PM
To: Jack Dempsey
Subject: RE: [PHP] Reg ex help-Removing extra blank spaces before HTML
output
At 10:57 AM 12/5/01 -0500, Jack Dempsey wrote:
>a space (\s is from perl)
Ah, OK, yours doesn't deal with newlines.
From list member "James", a solution
;$1",$input);
of course since you're now matching and replacing it'll take longer than a
straight substitution, although i doubt the files you're scanning are big
enough to notice
jack
-Original Message-
From: liljim [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 0
Hello,
The example Jack gave you will clear up spaces well, though to get both
newlines and spaces into one:
$input = preg_replace("/([ ]|\n){1,}/", "\\1", $input);
James
"Jack Dempsey" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> $text = preg_replace('|\
One way to do it is:
$NewString = ereg_replace('[[:space:]]+', ' ', $String);
There are also ways to do it with preg functions that are slightly
more efficient; see the pcre docs. And, the standard (AFAIK)
reference book for regular expressions is O'Reilly's 'Mastering
Regular Express
$text = preg_replace('|\s+|',' ',$text);
-Original Message-
From: Ken [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 05, 2001 2:06 AM
To: PHP list
Subject: [PHP] Reg ex help-Removing extra blank spaces before HTML
output
I want to remove all superfluous blank spaces before I sent
23 matches
Mail list logo