WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   Using wordwrap or reading in newline (\n) comands from a .txt document (https://forum.worldviz.com/showthread.php?t=3681)

EnvisMJ 04-04-2011 03:21 PM

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?

farshizzo 04-04-2011 03:52 PM

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')
Alternatively, you could use the textwrap module to automatically wrap the text:
Code:

import textwrap
s = '\n'.join(textwrap.wrap(s,100)) #Wrap every 100 characters



All times are GMT -7. The time now is 02:27 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC