I have a string as follows:
something.something[0].somethingelse[21].blah
I want to replace all the [*] section with an empty string so that I end up with a string like this:
something.something.somethingelse.blah
(I’m doing this in Python if that makes any difference)
Try this: