Hi,
Here's what I'd like to do with a regular expression: 2 steps:
(1) transform all variables in a selected area like this:
$Sejour_deb_mois
$Info_pays
to :
$SejourDebMois
$InfoPays
(2) transform all variables in a selected area like this:
$this->Sejour_deb_mois
$this->Info_pays
to :
$this->SejourDebMois
$this->InfoPays
And I'm pretty sure this can be done using a regular expression... but I can't figure out the two good ones that do the job...
Any help would be greatly appreciated!
Thanks
Olivier Pons