It may refer to Text formatting, Content format, File format, Document file format, etc.
2
votes
0answers
42 views
Eclipse Java Formater - Align Fields in Columns; Not Working
As the title states, my java formater - 'Align Fields in Columns' is not working. Hopefully Im doing something wrong that I can correct? This is how I have it set currently...
EDIT: Looks like its a ...
0
votes
2answers
26 views
Datetime in Python, just printing out the time and formatting
In my program I have:
from datetime import datetime
And in my program I have:
def get_time():
time = str(datetime.now())
print("")
print(time)
print("")
return None
but it ...
0
votes
1answer
49 views
Format date compare date XSLT
I have an XML file with description and date about events like this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="timedate.xsl"?>
<catalog>
...
0
votes
2answers
47 views
Excel seems to change format of only some columns
Using VBA, I import a csv file and put a bunch of data into several columns.
One of these columns has a date and time. As I need to be able to use just the 'time' part of these cells, I try to ...
0
votes
2answers
74 views
How to format time durations in Groovy?
I need to show time elapsed. I have the dates in following format.
Date1 = Thu May 23 10:10:10 EDT 2013
Date2 = Tue May 21 10:10:10 EDT 2013
I currently did TimeDuration ...
0
votes
2answers
69 views
Get normal user readable date/time with php
I know this question has been asked 2-3 times before, and I am using a function which I found in one of the answers(check it here) from those questions, but it doesnt seem to be working fine for me, i ...
1
vote
1answer
46 views
Formatting a 2d list, read in from file
Using python 2.7, I can read multiple csv's in from list of file names with this...
empty = []
for i in items:
with open(i) as file:
reader = csv.reader(file, dialect='excel')
for ...
-2
votes
1answer
49 views
meaning of file .TSP (travelling salesman)
I would like understand the informantion in a file .tsp found at:
http://www.tsp.gatech.edu/world/countries.html
For example
NAME : ar9152
COMMENT : 9152 locations in Argentina
COMMENT : Derived ...
0
votes
0answers
35 views
DataBinder.Eval not formatting a Container.DataItem value
What seems to be a simple process is not working. I just want to format a price value coming from a datasource to display in a currency format. In my page load I perform the following:
Dim dt ...
0
votes
2answers
25 views
How to output exponent value
Using scientific format in output file, I get: 0.245E+02 instead of
2.45E+01.
How to output in the later format in Fortran?
x = 2.45
write(*,130) 'x=', x
130 format (A,E8.2)
Update:
According to ...
2
votes
2answers
45 views
R's Format function returning an odd result
Why does
format(4444444444444444444,scientific=FALSE)
return "4444444444444444672"?
I thought it might be an integer precision thing, but this number is relatively small. Thanks!
I'm running R ...
0
votes
0answers
19 views
remove extra white space in the cakephp controller before json treatment
I'm a begginer in cakephp. I've found that json doesn't delete white spaces. I'm trying to remove extra white spaces in the function in my controller before I use them as json data in my view. I want ...
1
vote
0answers
42 views
Format JodaTime LocalDate in SpringMvc JSON using formatter
I have a problem with my Spring application.
How can I format a LocalDate in a JSON...
The problem is that when I send the JSON I have to send a number, but when Spring generate the JSON I have:
...
0
votes
1answer
41 views
Function format number and how to use it in sql statement
For oracle,
If I have a table A with data in number (such as price), how to write a function to format a number(10,2) to 9,9999.99 (<< obvious format).
And then how to use this function in ...
0
votes
3answers
68 views
Can't load a JSON file into python
I asked in another question for the type of this object, it is a text file coming from a URL.
variable = [["1","arbitrary string","another arbitrary string"],
["2","arbitrary string","another ...
1
vote
2answers
84 views
What kind of object is this?
I'm trying to load this object in python or PHP, but I'm now trying to know if there are libraries that are already written so that I don't parse the document myself.
variable = [["1","arbitrary ...
0
votes
1answer
83 views
Display HTTP Response Message in HTML using CGI (Python)
I have created a local server which sends a HTTP POST message to http://httpbin.org/post and then prints the return message on the screen.
The python CGI code that runs at the back end prints the ...
-1
votes
1answer
34 views
Mac OS-X disk file format [closed]
I need to format an external hard disk on a MacBook Pro (USB connection).
In the disk utility, Erase tab, I can only choose between these formats:
MacOS Extended (Journaled)
MacOS Extended ...
0
votes
1answer
75 views
Delphi - Format Filename from FTP
okay, I've the following problem:
I like to get a list of all .txt files on my FTP Server in a special folder.
I solved this already.
if IdFTP1.DirectoryListing.Count>0 then
for i := 2 ...
0
votes
1answer
28 views
Android Call log date convertion
I have a call log backup from my Android mobile phone, and I'm trying to know the date & time of the calls.
The log says:
<HTCCALLOG>
new=1
numbertype=3
duration=28
number=PERSON'S PHONE ...
0
votes
1answer
47 views
How to center align columns of different lengths using numpy.savetxt in Python?
I have several lists that contain both strings and floats as their elements.
import numpy as num
COLUMN_1 = ['KIC 7742534', 'Variable Star of RR Lyr type' , 'V* V368 Lyr',
'KIC 7742534', ...
0
votes
1answer
31 views
Get year format from a given Date format
I have a localized date format. I want to retrieve just the year format in Java.
So if I am given mmddyyyy I would like to extract yyyy.
if I am given mmddyy, i would like to extract yy.
I cannot ...
-1
votes
1answer
43 views
Formatting php timedifference based on days
I'm calculating a timedifference with this bit of php and formatting it in days, hours and minutes.
// Compares expires_at with the current time
$now = new DateTime();
$future_date = new ...
0
votes
0answers
25 views
Java XML RPC date iso 8601 with timezone
I am having a hard time trying to make a web service client work. It is a XML RPC specification. I am using Apache WS XML-RPC library, which I find full of holes that causes problem due to ...
0
votes
1answer
24 views
Format (spread) text in DefaultListCellRenderer
I have a list of expences that looks like this :
My List
I would like the elements of the list to appear as if formatted with \t :
PRODUCT NAME PRICE DATE
PRODUCT NAME PRICE DATE
...
0
votes
3answers
112 views
in C, what is “%n” ? and how does this code work? [duplicate]
In c programming language, what's the placeholder "%n" ??
and how the following code works ?
char s[150];
gets(s);
int read, cur = 0,x;
while(sscanf(s+cur, "%d%n", &x, &read) ...
-1
votes
0answers
28 views
data starting at 0 is in unknown format
My code is as follows
ZipFile zf = new ZipFile(sourcePath, "GBK");
When the program execution to it,the program crashes
the log is as follows
java.lang.RuntimeException: data starting at 0 is in ...
-1
votes
4answers
36 views
How to write a Regex format to accept a query string and a date?
I have a query string with a datetime value and input of like "?sincemodified=2013-04-02T08:34:12Z".
How to write an optional Regex format to accept above?
I wrote the below but failed:
...
1
vote
0answers
43 views
Hive custom XML input
I have some issue with xml input for the hive table.
My hive version is 0.10
I created table by this statment:
CREATE EXTERNAL TABLE logAlert (storexml string)
STORED AS
INPUTFORMAT ...
0
votes
0answers
11 views
Can't format DateTime value in Local Report?
I want to format the values in a DateTime column (in Tablix in Local Report) as month/year and I've tried various ways but it has been working unexpectedly and in a strange way, here are what I tried ...
0
votes
1answer
54 views
How to judge whether a file is a nv12 format file?
I have a file, I want to know whether it is NV12 format, how to judge a file is a nv12 format file? Is there any tool or test code?
0
votes
1answer
40 views
Python date formatting (0/0/0000 style)
I just have a simple question, I want to print out the date in a "0/0/0000" format, but the way that it's coming out is in a "0, 0, 0000" format. How could I change this? It has to do with this part ...
0
votes
1answer
118 views
Yii datepicker in gridview filter changes format after ajax request
like in the subject. I have a CGridView and Yii's datepicker in one of the filters. I have a format set to yy-mm-dd but after I put the value and the GridView use ajax to adjust the data - format is ...
0
votes
2answers
41 views
Converting Julian date to Java date but still cannot get Month
I am trying to get day ,month and year from a Julian date.
String date = "13136";//Julian date
Date convertedDate = new SimpleDateFormat("yyDDD").parse(date);
...
0
votes
1answer
29 views
Passing parameters in link_to tag - rails 3 throwing error
In my Rails application, I have a link_to field with the parameters, but it is not going to the action specified. Is there anything wrong with the format of link_to given below.
<%=link_to "Add ...
0
votes
1answer
37 views
How to set same key-bindings for different syntax? Sublime Text 2
How do I set same key-bindings for different syntax in Sublime Text 2? For example, I have three different formatting packages for HTML/CSS, Javascript, and Python. I would like them to have the same ...
2
votes
6answers
70 views
Formatting list in python
I have a list containing the numbers 25-1. I'm trying to print it out like a gameboard, where all the numbers match up:
I found out how to add the lines to the list by doing this:
_b = map(str, ...
-1
votes
2answers
32 views
I need \r\n instead of \n in text
When I open a file in Python and read it in I get this format: Data\r\n\r\n\t
When I paste it I get text without formatting characters, which I encode like this:
encoded = clipboard.encode('utf8')
...
0
votes
0answers
13 views
Integer into actual name [duplicate]
Can't really think of how to explain this question in the title.
Basically, if I have the number, (7 for this example), is there a way to write that as a string, but to the actual number, like "seven" ...
0
votes
3answers
54 views
Format Date while fetching the result of query
Ok, here is another one: I want to get the output from a mysql-query in a specific date format. Unfortunatley my code does not work. It must have something to do with "->format()", since without it I ...
1
vote
2answers
100 views
jQuery datepicker set format
How to set format to this DD, d MM, yy
I have try this and this is not working...
$( "#datepicker" ).datepicker();
$( "#datepicker2" ).datepicker();
$( "#datepicker" ).datepicker("option", ...
0
votes
0answers
14 views
Change date/time format from NWS (PHP)
I would like to take the expiration date and time of weather advisories and convert them into a more "civilian friendly" format. The format given in the CAP feed I look at is like this:
...
1
vote
2answers
35 views
HTML Post With Format “Blog”
I am working on a personal website, http://dummycode.com and I am having one issue, or rather a bothering time-consuming scenario. Since I am a new user I cannot seem to post more than two links, ...
1
vote
1answer
24 views
oracle column heading interferes to another column
I have problem with Oracle 10g database headig format.
I have this code
COLUMN id HEADING "Rodné|číslo" FORMAT A10
COLUMN name HEADING "Meno" FORMAT A20
COLUMN surname HEADING "Priezvisko" FORMAT A20
...
0
votes
0answers
34 views
How to format an incoming sms into different parts?
how can i format a paragraph into different parts which is an incoming sms.For example
Android
5554
I wan reading a book.
So how can i set the first line in the paragraph as a string the next as an ...
1
vote
0answers
66 views
What are the format specifiers I can use?
I'm using code::blocks with windows to program in c. Lately, I've hit a few problems trying to find out the addresses and values stored in the addresses of floats, long longs, etc. I've figured out ...
0
votes
1answer
25 views
Replace string where it has .rpt
I want read a string in java which has something like
xyz.rpt
abcde.img
erhteds.doc
aqwer.rpt
and modify the string which has .rpt in it. If string has .rpt at the end I need to change it to .doc
...
0
votes
3answers
57 views
Java Time/Date format
Simple question it's night here and I don't want to wait till morning
At 6AM:
SimpleDateFormat sdf = new SimpleDateFormat("HH");
Will sdf be 06, or just 6
Thanks.
0
votes
2answers
44 views
how to format timespan in wpd DataGrid?
I had a TimeSpan saved into SqlCe in ticks, and when i load the data in a DataGrid i want to format this value in HH:MM:SS. I try it with this:
<DataGridTextColumn Binding="{Binding tiempo, ...
0
votes
1answer
38 views
How do I check if my input on form is in 0000/0000 format?
I have a JFrame form with 2 text fields, both accept string as input, but one of those strings needs to be entered in format 0000/0000 (eg. 2008/0123), so it needs to have EXACTLY 9 characters. How ...











