3
votes
5answers
183 views
how to store printf into a variable?
I want to store a formatted string using something similar to what printf does in C.
char *tmp = (char *)sqlite3_column_text(selectstmt, 2);
const char *sqlAnswers = printf("select key from answer …
1
vote
2answers
54 views
Python 3 (2.6+) str.format() and regular expressions
Using str.format() is the new standard for formatting strings in Python 2.6, and Python 3. I've run into an issue when using str.format() with regular expressions.
I've written a regular expression …
1
vote
3answers
55 views
Lua string.format options
This may seem like a stupid question, but what are the symbols used for string replacement in string.format? can someone point me to a simple example of how to use it?
0
votes
3answers
48 views
VBScript: What is the simplest way to format a string?
I have the following format:
Value1 is {0} and Value2 is {1}.
I need to replace the numbers in the brackets with strings. This is easily done in most languages using string.Format or something along …
0
votes
3answers
41 views
Linq-to-Entities: Format Date in select query expression
I am trying to get a formatted date string directly from a LINQ-to-Entities query expression.
nonBusinessDays = (from ac in db.AdminCalendar
where ac.DateTimeValue >= …
1
vote
0answers
135 views
How might I convert integer values into words (for instance, 1006 becomes “one thousand and 6”)? [closed]
Possible Duplicates:
Convert an Integer to a string of words
How to convert a number to word form? eg: “72” to “Seventy two”
I want to convert an integer into a …
0
votes
2answers
36 views
Width and Precision using *
I'm learning Python from a book and came across this example:
>>> '%f, %.2f, %.*f % (1/3.0, 1/3.0, 4, 1/3.0)
# Result: '0.333333, 0.33, 0.3333'
Don't quite understand what's happening …
0
votes
2answers
63 views
Easiest way to format a number with thousand separators to an NSString according to the Locale
I can't seem to find an easy way to do it. The exact thing I need is:
[NSString stringWithFormat:@"%d doodads", n];
Where n is an int. So for 1234 I'd want this string (under my locale):
@"1,234 …
0
votes
2answers
42 views
Python, sending command to GPIB instrument
I need to send a command to a GIPB instrument and I can do it like this: power.write("volt 0.01").
This command sets the output of my power source to 0.01V, however, I'm trying to take an I-V curve …
3
votes
1answer
115 views
How do I use TeX/LaTeX formatting for custom data tips in MATLAB?
I'm trying to annotate a polar plot with data tips labelled with 'R:...,Theta:...' where theta is actually the Greek symbol, rather than the word spelled out. I'm familiar with string formatting using …
5
votes
3answers
218 views
C# String.Format an integer to use 1000’s separator without leading 0 for small integers
Silly question, I want to format an integer so that it appears with the 1000's separator (,), but also without decimal places and without a leading 0.
My attempts so far have been:
…
2
votes
3answers
102 views
python string replacement with % character/**kwargs weirdness
Following code:
def __init__(self, url, **kwargs):
for key in kwargs.keys():
url = url.replace('%%s%' % key, str(kwargs[key]))
Throws the following exception:
File …
0
votes
3answers
95 views
Is there a PHP function to format a currency amount in accounting format?
I'm currently writing a report in PHP that occasionally has to display negative currency amounts. Said currency amounts are stored in the database like "-44.00". Ideally this number would be output as …
2
votes
2answers
112 views
Python string formatting special characters.
How do you make the following code work?
example = "%%(test)%" % {'test':'name',}
print example
Where the desired output is "%name%"
Thanks
1
vote
4answers
104 views
Pythonic way to print a table
I'm using this simple function:
def print_players(players):
tot = 1
for p in players:
print '%2d: %15s \t (%d|%d) \t was: %s' % (tot, p['nick'], p['x'], p['y'], p['oldnick'])
…
