Skip to content
Advertisement

Replace rows with different number of characters

I have a column having strings of different number of characters. Most of rows have the following number of characters:

JavaScript

but there are also rows having different number, for instance

JavaScript

I would like to replace those columns that have a number of characters different from xx.xx.xxxx xx-xx-xx with a null value (e.g. NA). My approach would be to calculate length of xx.xx.xxxx xx-xx-xx and then filter rows which have a different number of characters: df[df['Char']!=len('xx.xx.xxxx xx-xx-xx')]. But I would need also to replace the values of those rows. Can you please tell me how to do it?

My column looks like

JavaScript

and my expected output would be

JavaScript

Advertisement

Answer

Try with loc

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement