Re: Help understanding why the RE does not totally work

2008-11-10 Thread Rob Dixon
Rob Dixon wrote: > Jack Gates wrote: >> On Friday 26 September 2008 02:52:45 pm Rob Dixon wrote: >>> Jack Gates wrote: On Friday 26 September 2008 01:20:29 pm Rob Dixon wrote: > Jack Gates wrote: >> >> s!(<|)!$1\L$2\E!g; >> or >> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; >

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 03:12:12 pm John W. Krahn wrote: > Jack Gates wrote: > > On Friday 26 September 2008 12:48:14 pm Jack Gates wrote: > >> s!(<|)!$1\L$2\E!g; > >> or > >> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > >> > >> The RE above captures and replaces all HTML tags with > >> lowercase a

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 03:11:48 pm Rob Dixon wrote: > That's fine, I shall stop trying to help you altogether. You are > very rude and don't want to accept correction. > > Rob You are the rude one. You don't read what is written and you ignore simple requests that are in plain sight. Becaus

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Rob Dixon
John W. Krahn wrote: > Rob Dixon wrote: >> Jack Gates wrote: >>> s!(<|)!$1\L$2\E!g; >>> or >>> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; >>> >>> The RE above captures and replaces all HTML tags with lowercase as >>> desired except for any tag that has only one letter such as , >>> or >>> >>> It wi

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Rob Dixon
Jack Gates wrote: > On Friday 26 September 2008 02:52:45 pm Rob Dixon wrote: >> Jack Gates wrote: >>> On Friday 26 September 2008 01:20:29 pm Rob Dixon wrote: Jack Gates wrote: > s!(<|)!$1\L$2\E!g; > or > s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > > The RE above captures and

Re: Help understanding why the RE does not totally work

2008-09-26 Thread John W. Krahn
Jack Gates wrote: On Friday 26 September 2008 12:48:14 pm Jack Gates wrote: s!(<|)!$1\L$2\E!g; or s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; The RE above captures and replaces all HTML tags with lowercase as desired except for any tag that has only one letter such as , or It will get the , and

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 03:00:15 pm Rob Dixon wrote: > Jack Gates wrote: > > On Friday 26 September 2008 01:23:23 pm John W. Krahn wrote: > >> Jack Gates wrote: > >>> s!(<|)!$1\L$2\E!g; > >>> or > >>> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > >>> > >>> The RE above captures and replaces all HTML

Re: Help understanding why the RE does not totally work

2008-09-26 Thread John W. Krahn
Rob Dixon wrote: Jack Gates wrote: s!(<|)!$1\L$2\E!g; or s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; The RE above captures and replaces all HTML tags with lowercase as desired except for any tag that has only one letter such as , or It will get the , and It properly ignores the tag What i

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 02:52:45 pm Rob Dixon wrote: > Jack Gates wrote: > > On Friday 26 September 2008 01:20:29 pm Rob Dixon wrote: > >> Jack Gates wrote: > >>> s!(<|)!$1\L$2\E!g; > >>> or > >>> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > >>> > >>> The RE above captures and replaces all HTML tag

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Rob Dixon
Jack Gates wrote: > On Friday 26 September 2008 01:23:23 pm John W. Krahn wrote: >> Jack Gates wrote: >>> s!(<|)!$1\L$2\E!g; >>> or >>> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; >>> >>> The RE above captures and replaces all HTML tags with lowercase >>> as desired except for any tag that has only one

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Rob Dixon
Jack Gates wrote: > On Friday 26 September 2008 01:20:29 pm Rob Dixon wrote: >> Jack Gates wrote: >>> s!(<|)!$1\L$2\E!g; >>> or >>> s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; >>> >>> The RE above captures and replaces all HTML tags with lowercase >>> as desired except for any tag that has only one lett

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 12:48:14 pm Jack Gates wrote: > s!(<|)!$1\L$2\E!g; > or > s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > > The RE above captures and replaces all HTML tags with lowercase > as desired except for any tag that has only one letter such as > , or > > It will get the , and > >

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 01:23:23 pm John W. Krahn wrote: > Jack Gates wrote: > > s!(<|)!$1\L$2\E!g; > > or > > s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > > > > The RE above captures and replaces all HTML tags with lowercase > > as desired except for any tag that has only one letter such as > > ,

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
On Friday 26 September 2008 01:20:29 pm Rob Dixon wrote: > Jack Gates wrote: > > s!(<|)!$1\L$2\E!g; > > or > > s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > > > > The RE above captures and replaces all HTML tags with lowercase > > as desired except for any tag that has only one letter such as > > , or

Re: Help understanding why the RE does not totally work

2008-09-26 Thread John W. Krahn
Jack Gates wrote: s!(<|)!$1\L$2\E!g; or s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; The RE above captures and replaces all HTML tags with lowercase as desired except for any tag that has only one letter such as , or It will get the , and It properly ignores the tag What is the correct way

Re: Help understanding why the RE does not totally work

2008-09-26 Thread Rob Dixon
Jack Gates wrote: > > s!(<|)!$1\L$2\E!g; > or > s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; > > The RE above captures and replaces all HTML tags with lowercase as > desired except for any tag that has only one letter such as , > or > > It will get the , and > > It properly ignores the tag > >

Help understanding why the RE does not totally work

2008-09-26 Thread Jack Gates
s!(<|)!$1\L$2\E!g; or s/(<|<\/)([^!][A-Z0-9 ]+>)/$1\L$2\E/g; The RE above captures and replaces all HTML tags with lowercase as desired except for any tag that has only one letter such as , or It will get the , and It properly ignores the tag What is the correct way to write the above RE