Commonly refers to a number of methods to display an arbitrary number of varied data types into a string.

learn more… | top users | synonyms (1)

0
votes
6answers
36 views

How do I make letters to uppercase after each of a set of specific characters

I have a collection of characters (',', '.', '/', '-', ' ') then I have a collection of strings (about 500). What I want to do as fast as possible is: after each of the characters I want to make the ...
0
votes
2answers
39 views

Dynamically Read the Format of a String, Python

I have a lookup table of Scientific Names for plants. I want to use this lookup table to validate other tables where I have a data entry person entering the data. Sometimes they get the formatting of ...
1
vote
1answer
33 views

Python 2.7 TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple

I've produced the following bit of code for python but for some reason I can't work out why it's returning the error: TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple I've had a ...
0
votes
1answer
48 views

TimeSpan string format exception

I've developed a web program in visual studio 2008 and converted it to 2010. In a Datagrid I have a data column with TimeSpan value. In 2008 I gave it string format 0:hh:mm and after the conversion I ...
0
votes
1answer
34 views

String substitution in django templates

How can I implement string substitution in django's default templating engine? I'm trying to basically implement "hello %s" % "world" with stringformat. I can't seem to get it right. My best ...
-1
votes
0answers
26 views

Is native implemmentation for String format in JavaScript [duplicate]

Is any native implementation of String.format for JavaScript similar to this example? String.format = function (f,d) { f = f || ''; if(d===undefined || !Array.isArray(d)) return f; //for(var ...
4
votes
2answers
40 views

Python add leading zeroes using str.format [duplicate]

Can you display an integer value with leading zeroes using the str.format function? Example input: "{0:some_format_specifying_width_3}".format(1) "{0:some_format_specifying_width_3}".format(10) ...
0
votes
3answers
33 views

How to format currency from database

The goal I want to format correctly the currency from database. The problem I'm formatting the currency from database with this: @String.Format("{0:C}", @Model["MinProductPrice"]) The problem ...
4
votes
4answers
76 views

Why would I ever use anything else than %r in Python string formatting?

I occasionally use Python string formatting. This can be done like so: print('int: %i. Float: %f. String: %s' % (54, 34.434, 'some text')) But, this can also be done like this: print('int: %r. ...
0
votes
1answer
43 views

Save Excel cell value of M/DD/YYYY as MMDDYYYY?

Say I have a cell with the value 5/29/2013 as Text. When I click my form control "SAVE" button, I save that value into another worksheet cell (set the other worksheets cell value equal to the one with ...
0
votes
1answer
38 views

Get a Round-tripped Double with only 3 decimals and +/- symbol

I need to convert a Double into a String respecting some conditions: I don't want a rounded value Only 3 digits after comma + or - symbol and beginning. (Extra : 0.000 if the double value is 0) (Not ...
-1
votes
0answers
46 views

C++ removing chars from a std::string

What's wrong with my code: std::vector <unsigned char> _colors (QD * 20); struct RGB { RGB() : R(0), G(0), B(0) { } unsigned char R, G, B; }; bool RGB_Exist(char R, char G, char B, ...
0
votes
1answer
43 views

Remove the list ID while writing to a file from R

I want to write the output of my R script to a text file. I am doing it with the help of sink("filename"); However, my output from: print(sprintf("%d%10f",key,value)); is in the format: [1] ...
-1
votes
1answer
34 views

The algorithm for obtaining the array from a format string

I need to find a way to get array from string and vice versa. For example I have these string: ...
1
vote
0answers
28 views

Where is seconds parameter being passed into method and stored? Converting seconds to string 00:00:00

I'm getting error: Timer should initialize to 0 seconds time_string should display 0 seconds as 00:00:00 (FAILED - 1) Failures: 1) Timer time_string should display 0 seconds as ...
2
votes
1answer
31 views

String issue with ANSI code

My goal is to visualize, for example, this output: [ Sun, 09 06 2013 12:51:49 ] The entire date must be colorized with this ANSI code: \033[1m\x1b[32m DATE \x1b[0m\r I tried with this piece of ...
1
vote
1answer
18 views

Set variable with new line and tab

Formatting issue that is getting passed to document. Sample companyList below which varies each time script is run companyList = ["Apple - Seattle Washington (800) 555-5555", "Microsoft - Tampa ...
1
vote
1answer
47 views

Can I store a formatted string like in printf?

Is there a way in C that I can format a string like I would in printf, but instead store it in a variable? I am trying to use this for system calls, so I can include a variable in the call.
1
vote
1answer
44 views

FormatException when using “X” for hexadecimal formatting

I took the following code from HexConverter - Unify Community Wiki string hex = color.r.ToString("X2") + color.g.ToString("X2") + color.b.ToString("X2"); This gives me the exception: ...
4
votes
2answers
50 views

floats in NumPy structured array and native string formatting with .format()

Can anyone tell me why this NumPy record is having trouble with Python's new-style string formatting? All floats in the record choke on "{:f}".format(record). Thanks for your help! In [334]: ...
3
votes
4answers
90 views

C Sharp DateTime Format

UPDATE This looks to be a bug in Windows 7. I tested the same scenario with Windows 8 and I cannot replicate this there. Please see the MS Bug Report that I posted on this issue if you want more ...
1
vote
1answer
27 views

Error Data binding on dropdown list

I Have Dropdwon on my aspx page : <td> <asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource1" DataTextFormatString = "{0} - {1}" DataTextField = ...
0
votes
3answers
62 views

Strange behaviour of printf string format in C

I have the function below in nesCwhich is essentially same as C as far as I understood! event void AdaptiveSampling.dataAvailable(error_t result, float val, bool isRealData) { if(result == ...
-4
votes
1answer
54 views

Need to convert date format in different way in c#? [closed]

I need to convert following date format in C# Actual : 5/20/2010 3:01:18 PM ==> (IST) Required : 20 May 2010 09:31:18 AM ==> (GMT) Is there any built in function in C#?
0
votes
2answers
27 views

Space is not coming when formatting string in php

When I am using printf, I am not being able to give space. This is my code: $number1=12.30; $number2=1; $f_number1 = sprintf("%9.2f",$number1); $f_number2 = sprintf("%9.2f",$number2); echo ...
0
votes
4answers
65 views

compute age from given birthdate

I have 2 comboboxes and 2 textboxes. My first combobox contains months in this format january, february, etc, and the other combobox contains numbers from 1 to 31. My first textbox is txtyear. Once ...
0
votes
1answer
27 views

printing string with and without “Strings-Formatting”

I'm trying to find out why I'm seeing this. This is the code-snippet: def check_status(addr,port=80): import urllib2 if not addr.startswith('http://'): addr = "http://" + addr req = ...
1
vote
1answer
23 views

python string formatting from list with arbitrary item

I want to do a string formatting with a list as showed below: (pseudocode) down_url = [url1, url2, ..., urln] url = "download: %s" % down_url Yes, the list down_url has arbitrary items, and I ...
0
votes
1answer
75 views

String Format when Export to Excel From gridview

I Have export Gridview data to excel, here's my code : Protected Sub btnExport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExport.Click Try Dim dt As ...
0
votes
1answer
19 views

Range.Replace not formating as expected

I am trying to do something that should be simple. I have VBA code in a excel macro that is to change some text. So, for example, change "Text 111" to text "001" The code runs, and changes the text ...
0
votes
1answer
23 views

In a python logging is there a formatter to truncate the string?

Python logging formats strings with a syntax I don't see elsewhere in python, like 'format': '%(name)s' Is there any way to truncate an error message using the formatter, or do I need to override ...
1
vote
1answer
43 views

Trying to format php time 12hr no leading zeros

I feel stupid asking - but I've had a problem with my time format. Using php and pulling date/time from a MySQL db I am trying to format a time display so there are no leading zero characters in my 12 ...
0
votes
3answers
36 views

Numeric Specifier for prefixing single digit with 0

I need to numeric format specifier, so as to prefix single digit with 0. I need: 1=01 2=02 : : : 9=09 The two and three digits will remain as it is no changes 10=10 11=11 : :
4
votes
2answers
92 views

Why can't Python's string.format pad with “\x00”?

I wanted to pad a string with null characters ("\x00"). I know lots of ways to do this, so please do not answer with alternatives. What I want to know is: Why does Python's string.format() function ...
2
votes
1answer
84 views

String.Format with SQL wildcard causing Dapper query to break

I'm having a bit of an odd problem with Dapper and string formatting. Here's the relevant code: string end_wildcard = @" SELECT * FROM users WHERE (first_name LIKE CONCAT(@search_term, '%') OR ...
0
votes
1answer
40 views

UnknownFormatConversionException is caused by symbol '%' in String.format()

String template = "%s and '%'"; String result = String.format(template, "my string"); System.out.println(result); Expected: my string and '%' But result is: ...
0
votes
0answers
13 views

Superscript formatting lost in my RSS's xml feed

I use superscript when referencing footnotes on my blog's RSS feed. They render absolutely fine on the website, but appear as normal unformatted text when viewed from a RSS reader. <a ...
0
votes
2answers
30 views

Limit number of character after certain character

I'm trying to limit number of character being shown after specific character in a string. Example: The number is like : 1424124.991412 What I want is make it shown like : 1424124.99 How can I do ...
1
vote
1answer
60 views

scanf format to ignore irrelevant characters

I wrote a short example code to illustrate my problem #include <stdio.h> #include <string.h> unsigned parseAndCompareDouble(const char* inSTR, const char* inF, const char * expect, const ...
1
vote
0answers
84 views

How to produce “human readable” strings to represent a TimeSpan

I have a TimeSpan representing the amount of time a client has been connected to my server. I want to display that TimeSpan to the user. But I don't want to be overly verbose to displaying that ...
1
vote
0answers
42 views

NoSuchElementException when formatting number on Android, but not on Java SE

I am porting an existing application to Android, and stumbled upon the following problem. This piece of code works perfectly fine on Java SE: String NAN_STRING = ""; DecimalFormatSymbols ...
4
votes
1answer
66 views

python format string thousand separator with spaces

For printing number with thousand separator, one can use the python format string : '{:,}'.format(1234567890) But how can I specify that I want a space for thousands separator?
0
votes
0answers
54 views

Coverting decimal to binary, octal, and hex [duplicate]

I want to convert a decimal number to binary, octal, and hex. I have Googled for the answer but all the methods I found are really big. I developed the same app for Android and I used something like ...
0
votes
1answer
40 views

change currency of string format [duplicate]

I've got a string formatter: String.Format("{0:c}", team.sales); when I do this, the string is printed with a pound sign(£) is there any way for me to force formatter to show dollars($) instead?
0
votes
1answer
26 views

sprintf equivalent for xtend

Is it possible to format strings in xtend? I am looking for something just like sprintf in C. I tried using the String.format in java but I don't know why it is not available in xtend. Maybe, they ...
1
vote
2answers
52 views

Python use variable in f.write

I am trying to use f.write i am not sure its a best way to do but i saw couple of example. here what i am trying to do, I have a file which contain following lines. parallel ( { ignore(FAILURE) { ...
0
votes
2answers
38 views

Custom string formatting for a list of objects

I have a list of objects. I am trying to output a meaningful representation of the objects in the list, that reveals some of the instance variables, using the string formatting capability built into ...
1
vote
0answers
51 views

ASP Format to percentage specific row of gridview

I have a fixed size table databound to a gridview from a stored procedure: Note: the table is 17 columns long. Currently I'm using a For..Next statement to alter the background colour of the ...
0
votes
3answers
67 views

Python print out float or integer

How can i print out float if the result have decimal or print out integer if the result have no decimal? c = input("Enter the total cost of purchase: ") bank = raw_input("Enter the bank of your ...
0
votes
1answer
60 views

MVC 4.0 String was not recognized as a valid Boolean

I have a razor 2.0 form which works perfectly locally. I've verified that the dll's on prod for MVC, Razor, and helpers are all the latest version. I'm getting this exception on every page that uses ...

1 2 3 4 5 24