Questions tagged [plaintext]

Plain text refers to any string or sequence of characters that consists entirely of ASCII printable characters.

Plain text refers to any string or sequence of characters that consists entirely of ASCII printable characters (human-readable characters). The key attributes of a plain text are that the text that is not computationally tagged, specially formatted, or written in code.

496 questions
-1
votes
2 answers

How to convert html page to text file in the same alignment?

I have an HTML page which formats text as show below. I want to generate a text file with the same formatting. Text1 Text2 This is the paragraph1 Text 01.03.2017 …
-1
votes
1 answer

Possible insecure login

At my apartment, I connect to a private WiFi network managed by the building. In order to connect to the internet, I need to sign in via the web-page served by the intranet server. Out of interest of the fact that my browser does not ask me to save…
Mike Rockétt
  • 8,947
  • 4
  • 45
  • 81
-1
votes
1 answer

How to remove redundant space in BeautifulSoup output

I intend to scrape a website using BeautifulSoup. I'm working on the following HTML : html =

mk_sch
  • 1,060
  • 4
  • 16
  • 31
-1
votes
2 answers

Remove and Re-add Punctuation Later Java

So I have a bit of text that I have to pass into a playfair cipher to be encrypted. The issue is I want to preserve the punctuation that is used in the string. For example "Timmy, What's your favorite color?" might be the string I want to encrypt.…
Jacob Reed
  • 37
  • 7
-1
votes
1 answer

Converting a list of addresses to a comma separated list

This is probably a pretty trivial problem, but here goes -- I have been given a plaintext list of addresses in this format: Name1 ¶ Address1 ¶ City1, State1, Zip1 ¶ ¶ Name2 ¶ Address2 ¶ City2, State2, Zip2 ¶ ... and so on. My job is to mail merge…
Evan
  • 13
  • 2
-1
votes
1 answer

Long Plaintext Email Links Not Displaying As Links

The plain text emails our company sends to clients who wish to receive them include a long string of parameters which are necessary for the business side. These are long strings including weird special characters and pipes and an email address. The…
sas08
  • 183
  • 7
-1
votes
2 answers

Show (generated) HTML only, no Javascript

is there a possibility to show generated HTML from Javascript (not PHP o.c.) e.g. I create a table with JS and would like to display the HTML code created by adding strings to the innerHTML property. The browser only shows the JS scripts and empty…
Alexx01
  • 13
  • 1
-1
votes
1 answer

Extracting pattern which does not necessarily repeat

I am working with ANSI 835 plain text files and am looking to capture all data in segments which start with “BPR” and end with “TRN” including those markers. A given file is a single line; within that line the segment can, but not always, repeats. …
rcfrank
  • 1
  • 1
-1
votes
2 answers

Set format as plain text

function A1format() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var mainsheet = ss.getSheetByName("Sheet1"); var G = mainsheet.getRange("C15:BH3000").getGridId(); var illa = mainsheet.getRange("A13"); Logger.log(G); …
-1
votes
2 answers

How to output the contents of an array as plaintext using javascript/jQuery

How do I take an array, modify it by moving each array number forward i places and if i is greater than 26 than subtract 26, and then displaying the array as it would be in plaintext. http://jsfiddle.net/clarinetking/kLy83oxj/4/ var alphabet =…
Clarinetking
  • 143
  • 2
  • 11
-1
votes
1 answer

An English to English glossary with one line word meanings

I'm working on a dictionary that gets english words and returns their meanings. My duty is to write a program that reads words and their meanings form a base-input glossary file that is a text file then implements B-Tree Data-Structure for saving…
ARF
  • 72
  • 7
-1
votes
1 answer

How to remove duplicate words from a plain text file using unix commands on windows

I have a plain text file with words, which are separated by comma, for example: word1, word2, word3, word2, word4, word5, word 3, word6, word7, word3 i want to delete the duplicates and to become: word1, word2, word3, word4, word5, word6,…
ozz
  • 175
  • 1
  • 11
-1
votes
1 answer

Twitter feed outputting as plain text

I have a twitter feed at the bottom of my website I am in the process of building: http://matthewkcooper.netii.net/ As you can see it is outputting url links at hashtags that are not clickable. How can I make these links active?
-1
votes
1 answer

Effectively parsing plain text

Please show me how I could effectively parse names and store them into memory from text like this: SMITH 1.006 1.006 1 JOHNSON 0.810 1.816 2 WILLIAMS 0.699 2.515 3 JONES 0.621 3.136 4 BROWN …
Edward83
  • 6,664
  • 14
  • 74
  • 102
-1
votes
1 answer

Aid me with php imap?

Possible Duplicate: PHP imap problems I need to be able to use my mail (gmail) from a php script. But wherever I try, the email body comes out all rubbbish with characters like =3D and random equals signs. Sometimes it comes in as base64 or…