3
votes
2answers
122 views
The Opposite of string.Format [closed]
Possible Duplicates:
Looking for C# equivalent of scanf
Parsing formatted string.
Hi,
Is there an opposite of this method. ie Something that parses the format template …
10
votes
12answers
2k 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 …
1
vote
3answers
83 views
What is the most readable use of String.Format for long strings with many parameters?
For instance:
String login = String.Format("computer={0}&ver={1}.{2}.{3}&from={4}&realcomputername={5}&type={6}&Channels={7}&Hotkeys={8}&ID={9}\r\n",
…
4
votes
5answers
3k views
Javascript 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 seperat …
11
votes
27answers
2k 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}" …
0
votes
3answers
95 views
Regex for Matching Custom Syntax
Hello, I am trying to write a regular expression to match and split a custom variable syntax in C#. The idea here is a custom formatting of string values very similar to the .NET S …
4
votes
3answers
296 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 …
0
votes
3answers
83 views
How to validate format string
We have lots of strings in our resource files that contains format .e.g
“{0} has moved to {1}”
These strings are passed to String.Format() by the applications, sometimes the …
2
votes
4answers
4k 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");
retu …
0
votes
4answers
95 views
What might be causing String.Format to move characters around unexpectedly?
So I have this code:
/* variables already initialized:
int numFlips
int numAggrFlips
double pctAggrFlips
*/
String flipsMessage = String.Format(
"Flips: {0} / Aggr: …
0
votes
2answers
136 views
(ASP.NET) Can you do a String.Format on a web.config key/value?
This might be a god awful question but I'm not sure why it won't let me do this.
I have a URL I need to store in Web.config, which has a dynamic parameter pulled from the web page …
4
votes
5answers
431 views
String.Format exception when format string contains “{”
Hello everyone,
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 …
3
votes
5answers
298 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 …
0
votes
2answers
1k 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
5
votes
4answers
397 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 wond …
