|
|
Thread Tools | Rate Thread | Display Modes |
#1
|
|||
|
|||
Using wordwrap or reading in newline (\n) comands from a .txt document
I'm reading in text from a .txt document that is to be read in as a string, and displayed within an infobox on screen. Problem is, some of the text chunks that need to be displayed are short paragraphs, so when the infobox shows up, it spans the screen, and only some of the text is visible.
How do I format this text into manageable lines? A. I've added '\n' within the .txt file to format it, but it's just ignoring them and actually writing out the \n when displayed. Is there a way to get it to not ignore them? B. Is there a wordwrap option that I can use? or even just a way of adding a newline every X number of characters? |
#2
|
|||
|
|||
If you are manually placing the \n characters in your text file, then you will need to use the following code to manually escape special characters (e.g \n):
Code:
s = s.decode('string_escape') Code:
import textwrap s = '\n'.join(textwrap.wrap(s,100)) #Wrap every 100 characters |
Tags |
formatting, infobox, newline, text, wordwrap |
|
|