The string.format tag has no wiki summary.
1
vote
1answer
55 views
String.Format in C#
I have an values like
1,000
25,000
500,000
Need to convert above values as like below without comma
1000
25000
500000
How to acheive this in C#?
how to get reverse output of this -
...
3
votes
2answers
65 views
Lua string.format %c versus string.char
Should Lua string.format( "%c", value ) be equivalent to string.char( value )?
It seems not when character value is zero.
string.format( "%c", 0 ):len()
returns 0
string.char( 0 ):len()
returns ...
1
vote
0answers
30 views
Overloaded methods give “Method with optional parameter is hidden by overload” warning in Resharper
I have a few C# apps that do logging, and the Output method has an overload to accept the message and a StreamWriter, and another overload with an additional parameter for a params array. An example ...
2
votes
2answers
48 views
Display a number with culture info but without formatting
I thought this was simple; the .Net Framework has so many functions for formatting a number exactly as you want, but still, I haven't been able to make this work.
The problem: display a number ...
3
votes
2answers
75 views
string.format(format,doubleValue) , precision lost
I have this double value:
var value = 52.30298270000003
and when I convert it to string, it losses its precision:
var str = string.Format("{0} some text...", value);
Console.WriteLine(str); // ...
0
votes
0answers
35 views
Date format mismatching in asp.net if different format is set while installing system
I have used jquery based datepicker,
For demo consider below link:
Link: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerClickInput.html
While loading the Page I have set the ...
0
votes
2answers
68 views
C# - format specific number using format.string in runtime (live) on texbox
i made code to format number when total lengh is == 11, it run on texbox change, but only format when it have 11 characters, i would like to make it on runtime (live), understood ? Its possible ? See ...
0
votes
2answers
52 views
If the same val is used to replace two separate string.Format placeholders, must it be provided twice?
Given this:
string msg = string.Format("Duckbill {0} Platypus has not been loaded. Fetch Duckbill {1}'s Platypus then continue.", userDuckbill, userDuckbill);
...would it suffice to do this ...
0
votes
0answers
35 views
DocumentFormat.OpenXml.OpenXmlElement alignment of text in VB.NET
I am using DocumentFormat.OpenXml.OpenXmlElement, and would like to know what I could use that is the equivalent to the following in VB.NET.
String.Format("{0,-10}{1,-30}{2,-30}", "First", "Last", ...
0
votes
1answer
53 views
Why would using string.Format() break my sql?
This works:
dynSQL = "SELECT * FROM inventory WHERE vendor_item = '" + VendorItem + "' ";
...but this doesn't:
dynSQL = string.Format("SELECT * FROM inventory WHERE vendor_item = {0}", ...
0
votes
3answers
79 views
How can I use string.Format() to truncate instead of round?
I would like to apply string.Format() in such a way that it performs truncation instead of rounding. For example
string.Format("##", 46.5); // output is 47, but I want 46
string.Format("##.#", ...
2
votes
3answers
78 views
How to take away fraction part using String.Format (c#)
How to take away fraction part while formatting decimal type in C#?
decimal a = 1.00m;
String.Format("{0}", a); // result is 1.00 Should be 1, HOW?
0
votes
3answers
47 views
File location wih String format
In Java, are these the same:
new File (a.getPath() + filename);
new File (String.format(a.getPath() + filename));
I'm getting some warning in findbugs, and the 2nd option seems to fix it.
-2
votes
2answers
72 views
What does these mean “{0,2:X2}” in statement String.Format(“{0,2:X2}”, b);
Code:
SHA1 sha = new SHA1CryptoServiceProvider();
string hashedValue = string.Empty;
//hash the data
byte[] hashedData = ...
0
votes
0answers
56 views
VB6.Format function - will it be around forever? [closed]
I'm just wondering how long the VB6.Format function for formatting strings and whatnot will be available? I'm not sure if these type of things go EOL or EOVS but was just wondering if I should start ...
0
votes
0answers
85 views
String.Format phone number fill from left
I am using something like this:
String.Format("{0:+### ### ### ###}", System.Convert.ToInt64(str.Replace(" ", "")))
and it's ok when I have full number. But when I use it in TextBox and user is ...
4
votes
2answers
61 views
C# - Force String.Format to use decimals and NEVER commas
Basically I'm realizing that my application is using commas instead of decimals, and i NEVER want to allow this. Anyone know how I can correct? I can't find one thing via google that is to force ...
1
vote
1answer
97 views
C# output is somehow program name and class name
I am trying to do the crazy formatting instructions my teacher gave me. After perusing for probably an hour (This is my first C# program), I came up with this line of code.
...
0
votes
4answers
155 views
Trying to use a String.Format in a Repeater but a getting syntax error
I don't get what I am doing wrong with this code. I think it might have to do with the (" or ')s
<asp:TextBox ID="txtPassportNumber" runat="server" MaxLength="19"
Text="<%# ...
0
votes
5answers
396 views
String.Format: Input string was not in a correct format [closed]
The following code keep giving me error saying Input string was not in a correct format, but I am pretty sure it is right, isn't it?
int id = 112;
String[] newData = { "1", "2", "21", "reidb", ...
1
vote
3answers
130 views
Is there a memory leak with Java String.format()
I have this statement in a while loop, I noticed that in the windows task manager, the memory used by the java app process is keep increasing, about several k per second. Is there a memory issue with ...
0
votes
3answers
136 views
How do I save a formatted string into a string variable?
I am creating a C# method that should
1. take in a string
2. format that string as Currency (no decimal or cents) and return it
String.Format is great at formatting, but its formatting applies only ...
0
votes
3answers
88 views
String.Format isn't working
public override string ToString()
{
string token = "something";
foreach (something item in this)
{
something = something + "Some_Point({0},{1}),";
string.Format(something, ...
0
votes
1answer
357 views
Add Thousand Separator To A Double Value(Control Decimals, Remove Zero Decimals) [duplicate]
Possible Duplicate:
.NET String.Format() to add commas in thousands place for a number
i have a double value that i want to add it thousand separator, with below conditions :
1- remove zero ...
4
votes
2answers
97 views
How can I format arguments in a string.format operation
This isn't a serious problem, I was just curious.
I am formatting a string, the data in the output string reuses argument data several times, but changes the case (for example).
string data = ...
0
votes
1answer
55 views
Escape curly brackets around a template entry when using String.Format [duplicate]
Possible Duplicate:
String.Format exception when format string contains “{”
Does following possible using C# String.Format?
Required output "products/item/{itemId}"
I've tried escaping ...
1
vote
1answer
242 views
Dynamic number/currency formatting with extenstion method / html helper
Our database stores values along with their associated format. Some number have 0 numbers after the decimal, some 1, some are currency, etc.
I am trying to avoid doing the following in each instance ...
2
votes
2answers
198 views
comma(,) separating string while exporting to XL in CSV format c#
I am a beginner in C#, I am exporting some data to XL sheet in CSV format. My data contains a fullname column in which data is like (John, Delores "Sutton"). When I export this to XL it is dividing ...
8
votes
4answers
563 views
How string.Format handles null values?
In the following code below, why the two string.Format behave the same way? In the first one, no exception is thrown and in the second one an ArgumentNullException is thrown.
static void ...
2
votes
4answers
100 views
How can I convert formatted string to int (if I know format) in C#?
I have formatted string, for example 123 456 000$ and I know format of this string {0:### ### ##0}$. I'd like to get int value = 123456000; from this string in C# with using known format.
How I can ...
1
vote
0answers
131 views
Pad string with leading zeroes with values that are already strings?
string n = string.Format("{0:000}-{1:00}-{2:00}-{3:00}-{4:000000}-{5:000000}"
,"20G","34","41","1","3G","2004");
The above works if the values are int's but in this case they ...
2
votes
4answers
113 views
String.Format failing with strange error [closed]
I have a method running with the following code:
private void WriteToDb()
{
using (SqlConnection dbConnection = new SqlConnection(_conStr))
{
dbConnection.Open();
using ...
1
vote
1answer
199 views
Using Java String.format
I have a string "name" which I need to add n amount of blank spaces to the end. I have been told to use String.format but for the life of me I cant figure out how to do it.
String formatName = ...
2
votes
6answers
117 views
Format string without string.Format?
I added a variable of type int and I used it to call something like:
x.ToString("0000");
I changed x to type string and now the above is invalid. Is the only way to format x now:
...
3
votes
2answers
121 views
How static scan all C# code for string format argument errors
We have thousands of different log messages coded using the log4net library and string format method calls.
One problem with this is that it's only at run time that we get an error if the string ...
0
votes
4answers
91 views
How to use String.format to convert a long to a String in currency format in Java
I need to learn how to convert a long value into a currency formatted string in a toString() method with the following scenarios:
If given long value = 9287, needs to be displayed as $92.87
If ...
1
vote
1answer
84 views
What is wrong with this String formatter line?
String result = String.format( "% % % | %-20s| %25s | $%,8.2f | %5d | %-s", thisYear, thisMonth, thisDay,
eventName, eventVenue, ticketPrice, ticketsRemaining, eventType);
ints: ...
0
votes
1answer
1k views
How to use String.format in groovy?
The code below prints the response variable preceded by spaces.
The number of spaces to be printed before the response variable is equivalent to the difference of the itemNumber and the ...
0
votes
1answer
121 views
String.Format is misaligned horribly for some reason
I'm used to using printf, but my research led me to believe I could use String.Format for setting up tables in a JTextArea and that it was essentially the same thing. This is for a rhythm game app. My ...
1
vote
3answers
298 views
Is the time format in 24-hour format?
I get a time format string passed to me in a string. It could be a standard string like "t", but could be a custom one (containing "HH", etc). How can I find out, that if displayed it'll be a 12-hour ...
6
votes
4answers
3k views
java equivalent to printf(“%*.*f”)
In C, the printf() statement allows the precision lengths to be supplied in the parameter list.
printf("%*.*f", 7, 3, floatValue);
where the asterisks are replaced with first and second values, ...
0
votes
4answers
424 views
How to validate formate for string.Format method
string.Formate has following method signature
string.Format(format, params, .., .. , ..);
I want to pass custom format each time like
string custFormat = "Hi {0} ... {n} "; // I only care about ...
2
votes
4answers
126 views
faster way to do .format()
I'm writing a program that needs to do a lot of string formatting and I have noticed that .format() is taking a small but significant amount of cpu time. Here's how I'm using it:
str = 'vn {0:.15f} ...
0
votes
1answer
277 views
formatting wildcard in ms access query on a datefield (SOLVED)
I have a datefield DTB_VER.VER_DATUM in my MS Access database with all full dates (e.g. 03-04-2012).
When I create the following query with a string format(vb.net):
Dim sql as string = ...
5
votes
1answer
1k views
How to format TimeSpan to string before .NET 4.0
I am compiling in C# using .NET 3.5 and am trying to convert a TimeSpan to a string and format the string. I would like to use
myString = myTimeSpan.ToString("c");
however the TimeSpan.ToString ...
1
vote
2answers
112 views
How to format a string through String.Format
Numeric
string a = String.Format("{0:#/#}",12)
output:1/2
But How to Convert it for string Suppose
String b=String.Format("{0:###-#}","test")
Output : test
Expected Output: tes-t
2
votes
3answers
201 views
Is there a more Pythonic way to pad a string to a variable length using string.format?
I want to pad a string to a certain length, depending on the value of a variable, and I'm wondering if there is a standard, Pythonic way to do this using the string.format mini-language. Right now, I ...
1
vote
1answer
858 views
.Net String.Format Currency in ItemTemplate with Subtotal in Databound
I have a ListView that displays a shopping cart. It was working fine until I added the String.Format to display the LineTotal decimal as a currency string. It was working when I just had an Eval on ...
2
votes
3answers
2k views
String.Format decimal with sign, fixed number of decimal places, no decimal separator
What is the cleanest, most readable way to String.Format a decimal with the following criteria
start with a sign symbol (+ or -)
a fixed number of fraction digits
no decimal separator
right aligned
...
0
votes
2answers
155 views
How to display int as a TimeSpan in string.Format?
I have the following code:
int sec = 62;
string str = string.Format("Time: {0:xxx}", sec);
What should I type in the place of xxx if I want an output like this: Time: 00:01:02?
I know I can type:
...


