I'm making an odoo10 module, but I need to change a string like
000-000
to
000000
How can I do that?
I'm making an odoo10 module, but I need to change a string like
000-000
to
000000
How can I do that?
Try this
Oldstr = “000-000”
Newstr = Oldstr.replace(“-”,””)
That should do it. What I did: