Text is a sequence of characters that is most often used to represent a cohesive piece of information.
0
votes
0answers
4 views
Serial Number Activation
I've made an serial number activation program which tries to find a .txt which will contain the serial that the user will type in the "serialnumber" textbox. My program as soon as the user presses the ...
0
votes
0answers
6 views
Search for a text inside a webview
i am working with an android application ... Is any one know how to search for a particular text inside a webview... So far I created this much code..
public class MainActivity extends Activity {
...
0
votes
0answers
11 views
Serial Number Activation
I've made an serial number activation program which tries to find a .txt which will contain the serial that the user will type in the "serialnumber" textbox. My program as soon as the user presses the ...
0
votes
1answer
10 views
Trying to turn long title in to ellipsis on responsive design
I'm designing a responsive web app, and I'd like to encapsulate long text in the title with an ellipsis. How can I do this? It's a responsive page (no fixed-width)...
Here is an example
Can anyone ...
0
votes
0answers
25 views
css text formatting with various styles and sizes
I am having trouble determining the best approach to laying out a section of text/textboxes in the following format (image below) without using a table. This content would be located inside a div set ...
1
vote
5answers
58 views
Bash Shell Script--Put each line within quotation
Question: I want to put each line within quotation marks, such as:
abcdefg
hijklmn
opqrst
convert to
"abcdefg"
"hijklmn"
"opqrst"
How to do this in Bash shell script?
0
votes
2answers
23 views
CSS is there a way to set spacing between an image and text within the same class?
I'm trying to set a class in css to display an image and a string after the image. The problem is the image and text overlap. Is there a way to put spacing between the image and text within the same ...
0
votes
2answers
24 views
How to use xpath to locate an acronym in parenthesis in a title element? For example (ANT)
In this xml example:
<concept><title>Another Neat Tool(ANT)</title></concept>
The context is: /concept/title/
I want to return any concept title element that contains any ...
0
votes
1answer
21 views
If i create an array of text elements in jquerry or javascript is it going to be indexed from Googlebots?
I have some text actually 20+ pieces of large text and i add it into an array
var translation = new Array();
translation [0] = "<p>English</p> Lorem ipsum dolor sit amet, consectetur ...
0
votes
1answer
11 views
SQLite not importing text document properly
I'm not sure if anyone has faced this issue.
Basically I have a text document with about 100,000 lines and I am trying to import it into an SQLite table with a single column.
After doing so, when I ...
0
votes
5answers
40 views
Android: Write text to txt
With the following code, I try to write to my sdcard:
public void writedata(String data) {
//BufferedWriter out = null;
System.out.println(data);
try{
...
1
vote
2answers
31 views
Paragraph of text in circle [CSS]
I have been looking around for a decent and fast solution on how to place a paragraph of text inside a circle. I found there are two solutions.
Solution 1
Float multiple div's of the same height as ...
0
votes
3answers
48 views
Replace in ASP.net
i'm new to asp.net and i'm struggling with the replace function that i'm hoping someone can help with. When i use some test text it works fine (as in the example below) but as soon as i replace the ...
0
votes
1answer
13 views
xpath : Get a button by type and text
I've a web page with following template :
<body>
...
<a type="submit"....>
"A1"
</a>
<a type="submit"....>
"A2"
</a>
<a ...
0
votes
1answer
21 views
How do I keep formatting when pasting into a 'textarea'? [closed]
I have a dynamic website set-up, with 2 text areas I can paste into (title/body info). OF course, if I type into these test fields, it just displays the info on the main webpage as plain text without ...