When a word gets to long it messes the text up…. how can I fix this?
Example:
Make a word with 4 chars like “cats” into “ca…”
How would I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you mean words get too long, and they widen the column it’s in? You could use a regular expression to fix it: Perhaps find any consecutive string of e.g. 200 non-whitespace characters and insert a space so that it can break to a new line there:
EDIT: To loka’s question: Similarly,