Tagged Questions
The string.format tag has no wiki summary.
160
votes
16answers
98k views
JavaScript equivalent to printf/string.format
I'm looking for a good JavaScript equivalent of the C/PHP printf() or for C#/Java programmers, String.Format() (IFormatProvider for .NET).
My basic requirement is thousand separator format for ...
45
votes
12answers
8k views
Is String.Format as efficient as StringBuilder
Suppose I have a stringbuilder in C# that does this:
StringBuilder sb = new StringBuilder();
string cat = "cat";
sb.Append("the ").Append(cat).(" in the hat");
string s = sb.ToString();
would that ...
33
votes
28answers
8k views
C# String output: format or concat?
Let's say that you want to output or concat strings, what style do you prefer:
var p = new { FirstName = "Bill", LastName = "Gates" };
Console.WriteLine("{0} {1}", p.FirstName, ...
19
votes
8answers
4k views
Is it better practice to use String.format over string Concatenation in Java?
Is there a perceptable difference between using String.Format and string concatenation in Java?
I tend to use String.format but occasionally will slip and use a concat, I was wondering if one was ...
18
votes
11answers
13k views
String.Format for C++
Looking for an implementation for C++ of a function like .NET's String.Format. Obviously there is printf and it's varieties, but I'm looking for something that is positional as in:
...
12
votes
3answers
29k views
Pad left or right with string.format (not padleft or padright) with arbitrary string
Can I use String.Format() to pad a certain string with arbitrary characters?
Console.WriteLine("->{0,18}<-", "hello");
Console.WriteLine("->{0,-18}<-", "hello");
returns
-> ...
11
votes
7answers
3k views
How to Conditionally Format a String in .Net?
I would like to do some condition formatting of strings. I know that you can do some conditional formatting of integers and floats as follows:
Int32 i = 0;
i.ToString("$#,##0.00;($#,##0.00);Zero");
...
9
votes
5answers
200 views
Can I format NULL values in string.Format?
I was wondering if there's a syntax for formatting NULL values in string.Format, such as what Excel uses
For example, using Excel I could specify a format value of {0:#,000.00;-#,000.00,NULL}, which ...
9
votes
5answers
3k views
String.Format exception when format string contains “{”
I am using VSTS 2008 + C# + .Net 2.0. When executing the following statement, there is FormatException thrown from String.Format statement, any ideas what is wrong?
Here is where to get the ...
8
votes
2answers
156 views
Why do the overloads of String.Format exist?
I was using Reflector to look at the implementation of String.Format and had always been under the impression that the overloads of String.Format that took 1, 2 & 3 arguments were optimized ...
8
votes
3answers
3k views
Escaping single quote in String.Format()
I have been all over the 'tubes and I can't figure this one out. Might be simple.
The following String.Format call:
return dt.ToString("MMM d yy 'at' H:mmm");
Correctly returns this:
Sep 23 08 ...
7
votes
4answers
5k views
String.Format vs “string” + “string” or StringBuilder? [closed]
Possible Duplicates:
Is String.Format as efficient as StringBuilder
C# String output: format or concat?
What is the performance priority and what should be the conditions to prefer each of ...
6
votes
4answers
1k views
Using .NET string formatting, how do I format a string to display blank (empty string) for zero (0)?
I am using a DataBinder.Eval expression in an ASP.NET Datagrid, but I think this question applies to String formatting in .NET in general. The customer has requested that if the value of a string is ...
6
votes
4answers
5k views
Is CultureInfo.CurrentCulture really necessary in String.Format()?
How do you think is really necessary to provide IFormatProvider in method String.Format(string, object) ?
Is it better to write full variant
String.Format(CultureInfo.CurrentCulture, "String is ...
6
votes
2answers
4k views
escaping formatting characters in java String.format
This question is pretty much the same as this .Net question exept for java.
How do you escape the %1$ characters in a java string.format?
THe reason I need to do this is that I'm building up a ...
5
votes
3answers
714 views
String.Format Doesn't Format a String
It seems as though String.Format won't format a string as an input. Am I doing something wrong, or is this just native behavior?
Input : 0.37
This doesn't work.
string x = String.Format("{0:P}", ...
5
votes
4answers
6k views
Need a custom currency format to use with String.Format
I'm trying to use String.Format("{0:c}", somevalue) in C# but am having a hard time figuring out how to configure the output to meet my needs. Here are my needs:
0 outputs to blank
1.00 outputs to ...
5
votes
8answers
874 views
.NET: Is there a String.Format form for inserting the value of an object property into a string?
I think the direct answer to the question is 'No' but I'm hoping that someone has written a real simple library to do this (or I can do it...ugh...)
Let me demonstrate what I am looking for with an ...
5
votes
8answers
1k views
String.Format or Not? [closed]
Duplicate from : http://stackoverflow.com/questions/16432/c-string-output-format-or-concat
Especially in C# world using String.Format for everything is really common, normally as VB.NET developer ...
4
votes
1answer
186 views
Localization of singular/plural words - what are the different language rules for grammatical numbers?
I have been developing a .NET string formatting library to assist with localization of an application. It's called SmartFormat and is open-source on GitHub.
One of the issues it tries to address is ...
4
votes
1answer
381 views
Help with string.format - building URL
I am trying to use String.Format to help with building a URL that will hold a parameter from a local variable. I think i'm close, but not sure where to go from here.
Thanks,
Jason
string ...
4
votes
2answers
390 views
String.Format with null format
Can anyone explain why the following occurs:
String.Format(null, "foo") // Returns foo
String.Format((string)null, "foo") // Throws ArgumentNullException:
// Value ...
4
votes
3answers
218 views
How can I determine if a composite format string is invalid?
Per the documentation, String.Format will throw a FormatException if either (A) the format string is invalid or (B) the format string contains an index that cannot be found in the args array.
I want ...
4
votes
1answer
3k views
Format decimal for percentage values?
What I want is something like this:
String.Format("Value: {0:%%}.", 0.8526)
Where %% is that format provider or whatever I am looking for.
Should result: Value: %85.26..
I basically need it for ...
4
votes
6answers
993 views
named String.Format, is it possible? C#
Instead of using {0} {1}, etc. I want to use {title} instead. Then fill that data in somehow (below i used a dictionary). This code is invalid and throws an exception. I wanted to know if i can do ...
3
votes
5answers
110 views
Better way to format a “01234567890” in “012.345.678-90”?
I have a simple question about how to format a string.
I have this number as a string "01234567890", with zero on left, and need to format that to be like that "012.345.678-90".
I solved it using it ...
3
votes
2answers
317 views
Globalized custom number formatting - Variable decimal points
I'm trying to alter the existing number formatting in my company's application to make it more readable for international users. This is a stock trading application, so most stock prices come in with ...
3
votes
1answer
472 views
Escaping arguments for string.Format in a C# multiline verbatim string
string template = @"
{
argument1 = ""{0}"";
argument2 = {1};
}";
When I format it as a usual string with string.Format, naturally i get an ...
3
votes
6answers
1k views
Use String.Format on a TimeSpan to output only full seconds
I want to display the elapsed time between two dates in a string.
Let's say I have the following code:
DateTime date1 = DateTime.Now();
System.Threading.Thread.Sleep(2500);
DateTime date2 = ...
3
votes
5answers
725 views
Problem with formatting a string with String.Format in C#
I need to print a string in a message box in specific format for which i am using code similar to as shown below:
string text="";
for (int i=0; i<n; i++)
{
a=..
b=..
c=..
text += ...
3
votes
2answers
1k views
Translating C++'s sprintf format string to C#'s string.Format
I found the following C++ code (comments added myself):
// frame_name is a char array
// prefix is std::string
// k is a for loop counter
// frames is a std::vector string
sprintf(frameName, ...
3
votes
5answers
195 views
Is there a way to reduce the verbosity of using String.Format(…, p1, p2, p3)?
I often use String.Format() because it makes the building of strings more readable and manageable.
Is there anyway to reduce its syntactical verbosity, e.g. with an extension method, etc.?
...
3
votes
3answers
2k views
How do you validate a composite format string in C# against its target argument types?
Given a composite format string provided by the user (for use with String.Format) and a set of types representing the arguments that would be used to format the composite format string, how can you ...
2
votes
2answers
79 views
How to detect the missing dynamic arguments in String.Format()
string myString = string.Format("{0}{1}", "foo");
This compiles but fails at runtime. I know why, don't worry. Anyone knows of a macro or a tool that would check my whole solution to find every ...
2
votes
3answers
149 views
C# String.Format - Invalid input string
I have a MVC3 HtmlHelper extension like this:
public static MvcHtmlString ShowInfoBar(this HtmlHelper helper, string message, InfoMessageType messageType)
{
return ...
2
votes
5answers
497 views
String.format slow, need faster alternative
I was hoping to get some advice on how to speed up the following function. Specifically, I'm hoping to find a faster way to convert numbers (mostly doubles, IIRC there's one int in there) to strings ...
2
votes
2answers
594 views
How to left-align strings in their “field” while using String.format() in Java Language?
First of all, thanks in advance for taking your time trying to help me with this lil' issue.
I'm using String.format() in Java trying to emulate the printf() control channel available in C. The point ...
2
votes
2answers
168 views
How to get string.format to complain at compile time
The compiler has access to the format string AND the required types and parameters. So I assume there would be some way to indicate missing parameters for the varargs ... even if only for a subset of ...
2
votes
5answers
366 views
Format string with dashes
I have a compressed string value I'm extracting from an import file. I need to format this into a parcel number, which is formatted as follows: ##-##-##-###-###. So therefore, the string ...
2
votes
5answers
200 views
How to get String.Format not to parse {0}
I am writing a code generation tool that frequently will have lines like
StringBuilder sp = new Stringbuilder();
sp.AppendFormat(" public {0}TextColumn()\n", className);
sp.AppendLine(" ...
2
votes
2answers
135 views
optimize a string.Format + replace
I have this function. The visual studio profile marked the line with string.Format as hot and were i spend much of my time.
How can i write this loop more efficiently?
public string ...
2
votes
2answers
97 views
Possible to pass format specifier for an argument as another argument to String.Format?
For instance, let's say I have the DateTime format-string in a string variable, is there any syntax or method in .NET that would let me do the equivalent of this invalid code:
String line = ...
2
votes
3answers
14k views
String.Format(“{0:C2}”, -1234) (Currency format) treats negative numbers as positive
Hi I am using String.Format("{0:C2}", -1234)
to format numbers.
is always formats the amount to a positive number, while I want it to become $*-*1234
1
vote
1answer
39 views
Testing for specific numbers order for character and numbers in a string in java
Right what I was trying to do is validate some input so that the input must start with 2 letters and followed by 3 digits, but I can't find a way of testing a string for this
boolean test;
String ...
1
vote
2answers
47 views
Escaping String.Format Placeholder
I have the following string
"ListId={1CC88B01-E60F-45D1-8B3C-28852574156D}&ID={0}&ContentTypeID=0x01003D458D19EF31D845B3A7727B0F2F8FC8"
I would like to use it as such
...
1
vote
0answers
46 views
Lined up multiline String into textView
it is my first post here and i would like ask question. I Have a problem with formating text in to TextView field. I'm populing string with data from database and i want to make it lined up.
for ...
1
vote
1answer
72 views
Custom FxCop rule to implement CA2241 against String.Format using a string resource?
CA2241: Provide correct arguments to formatting methods works great unless you are using string resources for the format string argument.
Does anyone know of a custom rule out there which does the ...
1
vote
2answers
88 views
Simple string.Format question for <a … class=“button” in mvc
Example link
<div style="float:right;"><a href="<%= Url.Content("~/Home/List") %>" class="button"><span>Return to List</span></a></div>
I want to be able ...
1
vote
2answers
60 views
Format Double as string with Posative / Negative symbol
I'm outputting a Double that can be either (+) or negative (-). If the number is a negative the symbol (-) is included automatically, is there a way to do this for positive numbers as well?
The only ...
1
vote
2answers
98 views
string.format efficiency with conditional spacing
What's the absolute fastest way to format a full name? where the middlename and suffix might be null or empty?
string fullname = string.Format("{0} {1} {2} {3}",
...