I have a piece of Unicode text. I wanted to remove all newline characters from the text before printing the output. My code looks something like this:
input_string = u'\u3010JK\u3011\u9032\u5b66\u306b\u56f0\u3063\u305f\uff2a\uff2b\u304c\u5148\u751f\u306b\u52a9\u3051\u3066\u3082\u3089\u3046\u305f\u3081\u306b\uff33\uff25\uff38\uff01.mov'
output_string = ' '.join(input_string.splitlines())
print output_string
I was hoping the library method to take care of all the dirty newline uncicode character cases. But, it looks like this method doesn't remove newline character from the given input. Please suggest a solution to remove newline character from the given input.