I have a string with space between the lines, like this:
prepre imprimé ...
Epreuve contrôle éléctronique
how can i remove the space between the two.
Thanks in advance
I have a string with space between the lines, like this:
prepre imprimé ...
Epreuve contrôle éléctronique
how can i remove the space between the two.
Thanks in advance
I would use
preg_replace
for this.This should normally do the job. I prefer
preg_replace
instead of str_replace due to the fact, that you can use a regular expression which is often easier to expand.