Tagged Questions
-1
votes
0answers
9 views
Word Wrap Mimimum Raggedness [closed]
I am looking for a simple explanation of how a simple minimum raggedness word-wrap algorithm would be implemented. I am simply terrible at reading code to figure out what an algorithm is "doing", ...
0
votes
3answers
1k views
I need to wrap long text within a container
I'm having problems wrapping text within my container. I've already searched and all answers were to put in word-wrap: break-word; but it doesn't work for me. I'm must be doing something wrong but I'm ...
0
votes
1answer
238 views
iPhone: Create image from NSString with word wrap
i am using following function for convert nsstring to image.
-(UIImage *)imageFromText:(NSString *)text FontName:(UIFont *)font
{
// set the font type and size
//UIFont *font = [UIFont ...
0
votes
4answers
682 views
Find a certain word in a string, and then wrap around it
I have a big string, with more than 1000 words. What I need, is to find a certain word, and then wrap some words around it into a variable.
$in = 'This is a very long sentence, what I need is to find ...
1
vote
1answer
741 views
Android textview breaks words apart when wrapping
I have a textview set to wrap text. The text is wrapping, but it is breaking words apart. How can I tell the textview to stop breaking words?
Here is the xml I have so far:
<ScrollView
...
2
votes
2answers
422 views
Wrapping words from HTML using XSL
I need wrapping each word with a tag (e. span) in a HTML document, like:
<html>
<head>
<title>It doesnt matter</title>
</head>
<body>
<div> Text ...
0
votes
1answer
905 views
Recursive Word Wrap Algorithm
I am working on an algorithm that has three parts. The first is a recursive method that will wrap words to a specific length with the least penalty. The second is an algorithm that is a Dynamic ...
10
votes
5answers
13k views
Android Word-Wrap EditText text
I have been trying to get my EditText box to word wrap, but can't seem to do it.
I have deal with much more complicated issues while developing Android applications, and this seems like it should be ...
0
votes
1answer
909 views
How to word wrap text in annotation subtitle
I tried to insert return and newline chars into the subtitle string, but they ended up as "spaces" and not line breaks. Since subtitle is simply an NSString I must look at the container, which likely ...
4
votes
2answers
2k views
Wrap some specified words with span in jQuery?
I'd like to know the most convenient way to wrap some specified words with span-tags.
Example:
I have a word, which is dog. Here's the original text:
I have a dog, do you have a dog?
And output ...
3
votes
2answers
4k views
Wrap Text inside fixed Div with css or javascript?
I have tinymce editor(textarea) and one div. Whenever i type inside the text editor, it shows at the preview div which is (200px) in real time which is looks alike stackoverflow preview.
What I want ...
