A generic term meaning the process by which text transformed into a more meaningful or clearer output. A typical example would be the transformation of a decimal into a particular currency format with the correct number of decimal places.

learn more… | top users | synonyms

1
vote
0answers
24 views

Cursor placement when calling a method with void parameters

This is a fairly straight forward question but I am unable to find an answer about this specific type of formatting. I'm looking for a way to modify where eclipse places the cursor after using its ...
0
votes
0answers
17 views

Reformatting an XML with IntelliJ

I have an XML file with many tags that are clumped together, rather than being separated by \r\n. When I try to use IntelliJ to reformat the code using the reformat code command, it doesn't ...
0
votes
1answer
26 views

Eclipse formatter for java ending braces

I would like to know if it's possible to setup eclipse to format braces using banner style. We're working with code that uses banner style formatting and would like to keep it consistent within the ...
-1
votes
1answer
76 views

String Formatting with Fortran

I have a weird assignment that I am struggling with. I have written a very simple method to insert spaces into a text and produce an evenly formatted (justified) text as a result. The coding in Java ...
0
votes
0answers
27 views

script output to columns with headers

netstat output with the following command netstat -an | grep tcp | awk '{print $6}' | sort | uniq -c | sort -nr 294 FIN_WAIT_2 173 ESTABLISHED 83 TIME_WAIT 33 LISTEN 9 CLOSED 3 CLOSING 2 ...
1
vote
0answers
9 views

How to format a disk in ext3 file system with a Block size greater than 4096 [migrated]

I want to format a disk in ext3 file system with the block size as 4096. Is there any possibility to do so? What if we do not write Inode Bitmap while formatting?
0
votes
1answer
19 views

formatting double and float once and for all in jsf2 application

I do a lof of manipulations, calculs with numbers (especialy double (#0.00) ) and I ask if is there a way to format those numbers once and for all I use this converter for the momentfor each double ...
-1
votes
1answer
34 views

Changing table numbers using pkg:stargazer for R

I'm trying to make several tables for a paper I'm writing using stargazer, but every table comes out saying "Table 1:" followed by my intended title. Is there a way to keep it from printing that, or ...
1
vote
1answer
22 views

SHEETOFFSET to copy color

I am using the SHEETOFFSET VBA code Function SHEETOFFSET(offset, Ref) ' Returns cell contents at Ref, in sheet offset Application.Volatile With Application.Caller.Parent SHEETOFFSET = ...
1
vote
2answers
54 views

Changing font for richtextbox without losing formatting

How to change the font of all the contents of a richtextbox without losing formatting? I am trying to use rtb.SelectAll(); rtb.SelectionFont = new Font(fontName,...); but the font constructor has ...
1
vote
1answer
27 views

How to smoothly align text output

Is there anyway to do this in python? I have a bunch of misaligned text that essntially looks like this (copied from above linked question) : column1 column2 ------- ...
1
vote
2answers
48 views

How do I apply a custom format such as “Text:” 0.0% in Excel VBA

I would like Excel VBA to write either a number or a percentage, depending upon a user control. In Excel, I can hit Ctrl 1 to apply a custom format such as "Text:" 0.0% or "Text:" 0.0. I have ...
0
votes
1answer
34 views

Formatting a java.util.Date through xsl built-in funciotn “format-dateTime” displays language

I'm using an xslt transformation to format a Java object to pdf through Apache FOP libraries. In particular I want to format a field of my object, a java.util.Date into DD/MM/YYYY format. To be able ...
0
votes
1answer
26 views

Problems parsing and printing integers with MIPS

I'm doing a homework assignment where I need to calculate a parenthesized math problem using the runtime stack in MIPS and I've hit a bit of a snag: I've gotten to the point where I'm trying to parse ...
0
votes
2answers
64 views

How to clear all column headers using DataTables

I was wondering, when updating DataTables using AJAX, how do you delete column headers left over from a previous DataTable? I have bDestroy set to true in both of my functions to draw the table, ...
0
votes
1answer
32 views

Place one HTML input directly below another with HTML

So I have a bunch of HTML elements I'm creating dynamically. I would really like the element "imageBox" to appear directly below the "mediaBox" instead of to the left of it like it is now. Here is my ...
0
votes
1answer
37 views

Saving jTextPane style to a document (xml)

I making a text editor that the user can apply formatting such as bold and underline. I was able to do this using jTextPane and StyleConstants, however i don't know how to save the styling on the ...
0
votes
1answer
30 views

JSON formatting errors for two files

I would like to know, I have just created my datatables, but two of them are giving JSON formatting errors. I am doing a join of two tables in these two. I tried running the query in phpmyadmin, and ...
1
vote
0answers
40 views

How do I compose format=flowed emails that include hanging indents with vim?

Is there a good way to configure vim to send format=flowed emails that include hanging indents? My complete vimrc (for testing purposes) is: set nocompatible set fo+=awn set tw=72 set ai I'm ...
2
votes
3answers
135 views

Sort without moving formatting

I have an Excel table in which multiple rows are given different coloured backgrounds by VBA macros. These background colours should be locked to the rows. My problem is that when the table is sorted ...
0
votes
1answer
51 views

How to display contents of a file with formatting preserved on the browser using Perl CGI

I have a text file saved in the server side. I have to read the file and display its content to the browser using perl CGI. The file has several paragraphs, newline and tab characters. I want to ...
0
votes
3answers
28 views

PHP - taking a text input with formatting

I'm quite new to PHP and I have a question. Is there a way to make a textbox, that could accept text with formatting? As far as I know the "regular" textarea is able to accept only raw text with no ...
0
votes
1answer
23 views

NetBeans: change autocomplete attributes from single to double quotes

NB started to put single quotes around my attributes when editing HTML instead of double quotes... up until yesterday it worked just fine... and it is really annoying now... I've must have pressed or ...
1
vote
2answers
34 views

Parse text to replace quotes and nested quotes

Using python, I would like "educate" quotes of a a plain text input and turn them into the Context syntax. Here is a (recursive) example: original text: Using python, I would like "educate" quotes ...
0
votes
1answer
108 views

Counting cell fill colours in excel 2007 using VBA not conditional formatting

What formula would I need to write if I wanted excel to report on the following: The number of red cells in the range H2:H30, and the answer to be returned in cell B36? The cells have changed colour ...
-5
votes
1answer
53 views

Formatting SprintF in C

The question i have with the code below, is where i have used sprintf, i want it to insert a formatted int, because the client then picks up the data and pulls out data according to char array. So the ...
0
votes
3answers
42 views

Formatting JButtons inside JPanels

So, I'm making a chessboard, and whenever I try to put down the buttons, they keep reorienting and get more and more messy towards the bottom right. The first button in the top right (squareB[0][0]) ...
2
votes
1answer
26 views

add a plus sign next to positive value on excel report

I use this line to formate my excel cell $objPHPExcel->getActiveSheet()->getStyle('D12')->getNumberFormat()->setFormatCode("0%"); if the value is negative, excel takes care of that and ...
0
votes
1answer
42 views

How to format data for display using an ItemsSource?

I'm pretty new to WPF, so pardon my ignorance. I currently have a List of objects that I am using as an ItemsSource for a DataGrid. One of the fields of the objects is a float data type, and of ...
0
votes
5answers
94 views

Set max length of a string c# but end with whole word

I want to truncate text if it is too long but i need it to truncate on a whole word. I have done the following: var mktText = model.Product.MarketingText; var countChars = ...
0
votes
1answer
35 views

Remove Formatting on Chrome Extension Generated Content

What is a short, quick, and efficient way to remove any formatting from a website's stylesheet on any dynamically generated content from my Chrome Extension? For example, if I use the code below in ...
1
vote
1answer
54 views

Consolidate stacked DOM formatting elements - contenteditable DIV

I have a contenteditable DIV which is linked/synced-back to a textarea. The contenteditable DIV is a free-for-all sandbox which will create formatting elements etc as they are being invoked. ...
-1
votes
1answer
77 views

How to add Conditional Formatting to an XML / Excel file?

I'm generating an Excel file by writing the XML for it. I am almost done, but I can't get the conditional formatting to work the way I want. I want to apply a condition to certain cells. E.g. for ...
1
vote
1answer
44 views

How do I format floating points within a class in python?

I want to format numbers that are put into this as float, fixed point numbers to two or three decimal places. However my code does not work class Quake: """Earthquake in terms of latitude, ...
0
votes
0answers
14 views

Program or method to standardize figure format and create multiple, similar figures

I couldn't find documentation to help me with this problem - [EDIT: ...and the only recommendations I've gotten from colleagues is what I have mentioned below]. I'm developing 23 figures that must ...
0
votes
0answers
11 views

Format eclipse so annotations not on different lines, but are on their own line

Say I have a method in Eclipse like so: @Deprecated @Override public void foo(int i) { super(i+1); } If I go to the formatter in eclipse, New Lines tab, and uncheck Insert new line after ...
0
votes
0answers
36 views

Google combo chart legend - multiple series on one legend color?

I'm using a Google combo chart; I've represented three series of data as columns and three as lines. The line graphs represent moving averages of the same data represented by the columns. For ...
3
votes
1answer
97 views

Vba check if partial bolding in cell

I'm generating XML from a list of text within a worksheet but I cant figure out how to check if the current cell has a bold word within it. What I need to do is check each cell in column A, read the ...
0
votes
0answers
105 views

vba excel - Copying multiple cells including formatting/shapes/merged formatting

I can't seem to find anything on this in the forums or using google, so I'm not too sure if this is doable at all or if I'm just not looking in the right area: I have 2 equal sets of areas (ie. 10x5 ...
-3
votes
2answers
75 views

Why does XML look differently in notepad++ and notepad? [closed]

UPDATE Ok, so the reason the files look differently is because the EOL(End Of Line) is different in UNIX and Windows format. Notepad can not handle UNIX EOL so it places the XML all on one line. ...
0
votes
1answer
62 views

Format Cell Values in an Infragistics UltraWinGrid

I have an Infragistics UltraWinGrid bound to a data source, and one of the columns in that data source contains boolean values. I have the Style property for the column set to Edit so that it will ...
1
vote
1answer
82 views

Setting different Cell-Formats in a Matlab uitable

I am looking for a way to handle different type of data in one column of a Matlab uitable. Usually uitable is used to set whole columns to the same data type, such as logical (gives a checkboxes), ...
0
votes
1answer
34 views

Time formatting ASP.NET GridView

I have a label in the grid whose value is populated from a dropdown in a popup window(The dropdown has time values in hours - 00 to 23). I have bound the label in the grid like so. <asp:Label ...
0
votes
2answers
62 views

setting default numeric format in awk

I wanted to do a simple parsing of two files with ids and some corresponding numerical values. I didn't want awk to print numbers in scientific notation. File looks like this: someid-1 860025 ...
0
votes
1answer
34 views

Having problems with creating a fluid formatting.

I'm struggling terribly to figure out why my content overflows and my divs aren't playing nicely. (all sitting where they should be.) This is a link to what I've got currently. I'll keep trying ...
0
votes
4answers
73 views

Convert to DateTime Format

Hello is there a way to convert this string "Saturday 04/23/2013 11:05 PM" to a valid DateTime Format? Because it gives me FormatExceptionError everytime I execute this condition: String was not ...
0
votes
0answers
15 views

How can I tell if my yql rest query is formatted correctly?

My rest query provides accurate data when formatted like this: <script ...
-1
votes
2answers
21 views

Can't get averages aligned properly

More hw issues :D I need to have the averages aligned. I tried, but the student names are different lengths and using printf works to an extent but for names longer than others they are not lined up. ...
2
votes
1answer
31 views

Conditional Formatting xlwt

I have seen some posts that say you can NOT perform conditional formatting using xlwt, but they were rather old. I was curious if this has evolved? I have been searching for about half a day now. ...
0
votes
2answers
47 views

toLocaleString() not supported in all browsers? [duplicate]

i've this simple function: Chrome, Firefox, IE: Number(1000000).toLocaleString() "1 000 000" // in french system, the space is the separator instead of the comma Opera, Maxthon: ...

1 2 3 4 5 78