Hello,
I have one simple string, backspace character question.Here is my
example:
"HelloBSwor ld"
Should this character "\b" (backspace) in this text return this:
"Helloworld "?
Regards,
Vedran
I have one simple string, backspace character question.Here is my
example:
>>text="Hello\b world"
>>print text
>>print text
Should this character "\b" (backspace) in this text return this:
"Helloworld "?
Regards,
Vedran
Comment