5
votes
3answers
57 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
1answer
70 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 str …
0
votes
2answers
31 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 …
2
votes
3answers
68 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 "/h …
2
votes
2answers
67 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
0
votes
3answers
54 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 numbe …
1
vote
4answers
94 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[ …
3
votes
5answers
145 views
What is the best data type to use in order to store numbers with leading zeroes?
In Access 2003 I need to display numbers like this while keeping the leading zeroes:
080000
090000
070000
What is the best data type to use for this?
1
vote
4answers
144 views
Add comma thousand seperator to decimal (.net)
I have a decimal number, say 1234.500.
I want to get it to display 1,234.4
Im currently converting it to a double to remove the trailing '0's.
string.Format("{0:0,0}",1234.500) …
0
votes
4answers
103 views
std::string and format string
I found the below code through Google. It almost does what I want it to do, except it doesn't provide a way to indicate the precision like '%.*f' does in C-type format strings. Als …
1
vote
2answers
76 views
% operator in python over string
What does the following Python statement mean?
send_data=""
str_len = "%#04d" % (len(send_data)/2)
0
votes
1answer
59 views
convert .net format string to java format string
I am looking at the format specifiers of C# and the patterns for formatting numeric strings in Java.
I am wondering if anyone has any pointers as to translating from one form to …
3
votes
5answers
148 views
how % applies to this method in Python?
From my studying of python, I've found two uses for %. It can be used as what's called a modulo, meaning it will divide the value to the left of it and the value to the right of it …
0
votes
2answers
88 views
String Format Does Not Works For string
Hi, I have a serial number which is String type.
Like This;
String.Format("{0:####-####-####-####}", "1234567891234567" );
I need to see Like This, 1234-5678-9123-4567;
Bu this …
0
votes
5answers
211 views
Convert double to String with fixed width
I want to convert a double to string with fixed width.
If the width is 10, then I want the double value to get round off to this width.
For example, if value = 102.121323435345 a …
