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.
0
votes
0answers
11 views
Partitions to have C: for win 7, D: for documents, and also to have Linux [closed]
I have a new computer that doesn't have any operating system installed. I want to create partitions to have Windows 7 on one of the partitions and another partition for Documents/Data to use with the ...
2
votes
1answer
44 views
How to custom Eclipse's formatter about jQuery code
This topic is nice, but instead of placing special tag comments everywhere, I look for a solution about jQuery code, more specifically the $ character. Eclipse formatter does not seem to recognize
...
0
votes
2answers
41 views
datetime formatting in javascript
When I generate a date with the following code
var date = new Date();
I get a date-time of the following form
Sat May 11 2013 21:54:23 GMT-0700 (PDT)
Can anyone tell me how to generate a date of ...
0
votes
2answers
25 views
Date formatting in php, unexpected result
The Script Below:
<?php
$postedDate = "Sat May 11 2013 20:36:24 GMT-0700 (PDT)";
$date = date('Y-m-d H:i:s', strtotime($postedDate));
echo json_encode($date);
?>
Returns the value:
...
1
vote
1answer
60 views
How easily convert boolean to yes/no using Rails I18n
I have an easy problem - I need to convert boolean (contract_pledge) to yes/no format in Russian language (Да/Нет). I thought I could easily find an answer because if you want to display checkboxes in ...
0
votes
0answers
14 views
IDE Code formatting
Code looks like this in my editor:
if(waiting_list_flag) {
SwitchDialog('RFOWAITLIST');
} else {
SwitchDialog('RFO');
}
But looks like this in IE Developer Tools Debugger or Firebug or ...
1
vote
2answers
62 views
Create a computed column based on another column in MySQL
I have a 2 columns in my table: a varchar(8) and an int.
I want to auto-increment the int column and when I do, I want to copy the value into the varchar(8) column, but pad it with 0's until it is 8 ...
2
votes
1answer
63 views
Uncrustify: nested block indeting is wrong
I have this code:
dispatch_async(dispatch_get_main_queue(), ^{
if (self.adAppearBlockIsAnimated) {
[UIView animateWithDuration:kAnimationTime animations:^{
...
0
votes
0answers
24 views
How do you indent and format an XML file in a Win 8 app?
I've got some code that generates an Windows::Data::Xml::Dom::XmlDocument^ in a win 8 app
XmlDocument^ document = ref new XmlDocument();
auto A = document->CreateElement("elemA");
...
0
votes
1answer
24 views
Formatting Open Source Licences ala StackOverflow/Github
In my project I want to include a Dialog that shows the open source licences of the libraries I use in the application. Particularly though, I want them to look a lot like this:
That's how it ...
0
votes
2answers
35 views
Formating a single textfield so that it display is different to all the others
How would i set the currency in a text field to display it as a localized currency, with a leading 0. If someone types in 16.25 pence it would be formated as 0.1625£ respectively. I am using ...
1
vote
1answer
32 views
Formatting subtotals in a matrix report
So I have a matrix report where the formatting from my data cells is not inherited by the subtotals. I read this article ...
1
vote
1answer
84 views
Formatting a cell to a percentage in PHPExcel
I am automating an excel spreadsheet using PHP.
I have been looking for a way to pragmatically format a cell to a percentage in PHPExcel.
I want to change a value like
0.077922078
to
8%
...
0
votes
1answer
40 views
.NET verify format string for a dynamic type
I would appreciate some aid in getting the last piece solved please. What I want is to read from configuration the TYPE, VALUE and FORMATSTRING to be applied on the VALUE.
In Code, what I am trying ...
0
votes
4answers
114 views
How do i get two drop down list to be displayed side by side?
I've been trying to make two drop down lists to be displayed side by side but can't figure it out. What CSS element property to set to do this. I have to show it in the following format:
[company] ...
2
votes
1answer
122 views
Pandas: Setting no. of max rows
I have a problem viewing the following DataFrame
n = 100
foo = DataFrame(index=range(n))
foo['floats'] = np.random.randn(n)
foo
the problem is that it does not print all rows per default in ...
0
votes
4answers
90 views
How to tell if an existing java.util.Date matches a particular format
I am being passed a java.util.Date instance and need to make sure it conforms to a MM/dd/YYYY format. How can I perform such validation (sans libraries like Joda Time)? I checked the API methods for ...
0
votes
4answers
233 views
how to get 2 digits after decimal point in tsql?
I am having problem to format digits in my select column.I used FORMAT but it doesn't work.
Here is my column:
sum(cast(datediff(second, IEC.CREATE_DATE, IEC.STATUS_DATE) as float) / 60) ...
1
vote
1answer
92 views
Conditional Formatting in Excel 2010 - Shading Rows
I am trying to use conditional formatting in an excel 2010 spreadsheet. The spreadsheet has seven columns of data, but for the formatting, only the first three are relevant. The first two are dates ...
0
votes
1answer
35 views
Generating txt file in complex format from Matlab datas
I'm relatively new to Matlab and currently using it to calculate pressure cards for rapid dynamic applications on RADIOSS.
The function is done and can calculate Time-Pressure points.
For the moment I ...
0
votes
1answer
85 views
Java Code beautifier/formatter library with PHP, JavaScript support
I'm searching a java library that formats/beautifies a given source code snippet. The library should support at least PHP and JavaScript source files.
The reason why i'm searching this is because the ...
0
votes
1answer
78 views
CSV file number format is different in EXCEL and Notepad
I have received a report as an CSV file. It contains the contact names and contact numbers.
When i try to open the file in Excel, it displays the contact number like "912224308876". But, if i try to ...
-2
votes
2answers
50 views
Preserving the format of a text file over a socket [closed]
I'm sending a text file over a socket where it is received and output. So I've converted it to bytes. However, when it is output, the text file is simply dumped as one long string which ignores the ...
0
votes
0answers
12 views
(not only) formatting dates in jopendocument
I'm trying to use jopendocument to generate OpenOffice document from the template. Because of lack of the documentation, I do not understand following issues; any help is appreciated.
1) Is there ...
0
votes
0answers
28 views
Live international phone number recognition [closed]
I would like a form field which recognizes a number by country code as the number is typed, preferable using jQuery. I have tried different techniques but with very little luck.
This is EXACTLY what ...
1
vote
0answers
30 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
21 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
30 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
2answers
89 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
35 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 ...
0
votes
1answer
24 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
51 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
35 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
114 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
36 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
87 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
58 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
30 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
3answers
84 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
37 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
58 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
33 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
44 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
157 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
67 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
32 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
39 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
41 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
318 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
64 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 ...


