I'm importing a CSV file, but for some reason, every line ends with the ¶-symbol... So my database is contaminated with all this symbol. And above all, it's ruining my workflows.
So I would like to strip those symbols.
I've tried with $csv_value = preg_replace( '/\s+/', '', $csv_value);
but this line of code also deleted my spaces...
How can I just remove the ¶ symbol from my $csv_value
?