Answer the question
In order to leave comments, you need to log in
How to remove a paragraph character?
There is an excel file, there are keys in one column, and there can be several keys in one line (see screenshot 1). Excel is converted to csv and such values are inserted into the database (see screenshot 2). How to replace ¶ with ";" For example?
Answer the question
In order to leave comments, you need to log in
str = '1.2.2¶1.2.3'
sanitized = str.replace('¶', ';')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question