Hi!
I got this list looking something like this
words = ['how', 'much', 'is[br]', 'the', 'fish[br]', 'no', 'really']
What I would like is to replace the [br] with some fantastic value similar to <br /> and thus getting a new list looking like this
words = ['how', 'much', 'is<br />', 'the', 'fish<br />', 'no', 'really']
I've laborated a lot by now so a little help would be appreciated!
Thanks!