here is the result I print out by python:
With \u003cb\u003eall\u003c/b\u003e respect, if we look from one perspective, it is just like looking at ants.
and the data type is
<type 'unicode'>
Is there gonna be a way to replace \u003cb\u003e by ''? I have tried
str.replace("\u003cb\u003e", ''),str.replace("\\u003cb\\u003e", '')andstr.replace("<b>", '')but none of them worked
. How can properly replace it by an empty string?
edited:
here is the result of print repr(mystrung):
With \\u003cb\\u003eall\\u003c/b\\u003e respect, if we look from one
perspective, it is just like looking at ants.
print(repr(your_string))show?u'With \u003cb\u003eall\u003c/b\u003e respect'is just the same asu'With <b>all</b> respect'becauseu'\u003c'isu'\x3c'and actually is'<'. You should try to fix it upstream...