0
votes
1answer
15 views
Iphone: label text udates value but does not show in view
Hi..
Im working on a part of code where a label text should change value after getting a new value from a singleton class. Seems simple enough, and after testing the value it actually changes …
1
vote
1answer
29 views
HTML line wrapping w/ punctuation
I have some content that uses multiple punctuation marks in a row: "...what road?, others are roads..."
WebKit likes to break this between '?' and ','
Is there any way to prevent this?
0
votes
2answers
42 views
jQuery: Insert text to textarea
How can i utilize jQuery to insert text at the cursor into a textarea.
1
vote
3answers
53 views
c# : parsing text from html
I have an string input-buffer that contains html.
That html contains a lot of text, including some stuff I want to parse.
What I'm actually looking for are the lines like this : "< …
0
votes
7answers
130 views
Delete final line in file via python
How can one delete the very last line of a file via python?
Example File:
hello
world
foo
bar
Resulatant File:
hello
world
foo
I've created the following code to find the number of lines in the …
0
votes
0answers
15 views
Python SQLite FTS3 alternatives?
Are there any good alternatives to SQLite + FTS3 for python?
I'm iterating over a series of text documents, and would like to categorize them according to some text queries. For example, I might want …
0
votes
1answer
13 views
Text data in form-field too long.
I have a form with a text area field. I put some text information there and send it as post request. This information is about 2M of text. Everything goes fine with server and database because post …
0
votes
1answer
34 views
Java: MalformedByteSequenceException (XML)
I'm trying to parse XML using this class. When I type out a simple file, it works fine.
<testData>
<text>
odp
</text>
</testData>
Here is my main
public static …
0
votes
0answers
12 views
snag colored text command window output
I sometimes run command line code that produces output in colored letters.
I would like to somehow find a way to copy that out put and either port it in RTF format or HTML.
I did something simular to …
0
votes
2answers
29 views
convert special characters but not tags
I've got some text which needs converting to use HTML entities, but it also contains tags. Here's a sample:
<p>Ofcom issued the warning to Global-owned GWR in Bristol – which is required to …
0
votes
4answers
43 views
Another tricky preg_match
Just need to see if a paragraph contains a "stop word", the stop words are in an array below.
I had the formula as:
$pattern_array = array("preheat", "minutes", "stir", "heat", "put", "beat", …
3
votes
3answers
115 views
What is “entropy and information gain”?
I am reading this book (NLTK) and it is confusing. Entropy is defined as:
Entropy is the sum of the probability of each label
times the log probability of that same label
How can I apply …
0
votes
0answers
4 views
How to read text containing bullets from a table row inside a word doc using POI
HI,
I am trying to read a word doc that contains a table using POI. The requirement is to create rows in a Database Table with the information extracted from the table rows in the word document. For …
1
vote
2answers
100 views
Qt, text on a black and white screen
I'm using Qt (embedded) to make a GUI on a black and white screen. The problem is Qt renders text with shades of grey so it is unreadable on the black and white screen. Does anyone have any idea how …
0
votes
1answer
45 views
Nokogiri how to get the parent text and not the childs text and reference the text back to its parent
Let's say I have this sample:
page = "<html><body><h1 class='foo'></h1><p class='foo'>hello people<a href='http://'>hello …
