Date: 12/15/00
- Next message: Ulf Wendel: "Re: SV: [phplib] IntegratedTemplate and case-sensitivity"
- Previous message: R.B. Scholtus: "Re: [phplib] Netscape 4.7 & 4.75 problems....."
- In reply to: Spruce Weber: "Re: [phplib] IntegratedTemplate and case-sensitivity"
- Next in thread: Ulf Wendel: "Re: SV: [phplib] IntegratedTemplate and case-sensitivity"
- Reply: Ulf Wendel: "Re: SV: [phplib] IntegratedTemplate and case-sensitivity"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
The class uses preg_match_all() and preg_replace, but the regular expression
looks something like this:
@{([0-9A-Za-z_-]+)} <email protected>
Should this be changed to:
@{([0-9a-z_-]+)] <email protected> or how?
>If the class uses Perl compatible regex functions such as preg_match_all()
>and preg_replace() you can accomplish this by adding i after the closing
>delimiter...
>"/a regular expression/i"
- Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-unsubscribe <email protected>
For additional commands, e-mail: phplib-help <email protected>
- Next message: Ulf Wendel: "Re: SV: [phplib] IntegratedTemplate and case-sensitivity"
- Previous message: R.B. Scholtus: "Re: [phplib] Netscape 4.7 & 4.75 problems....."
- In reply to: Spruce Weber: "Re: [phplib] IntegratedTemplate and case-sensitivity"
- Next in thread: Ulf Wendel: "Re: SV: [phplib] IntegratedTemplate and case-sensitivity"
- Reply: Ulf Wendel: "Re: SV: [phplib] IntegratedTemplate and case-sensitivity"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

