String Interpolation with format variable

2019-01-07 23:19发布

问题:

I can do this:

var log = string.Format("URL: {0}", url);

or even like this

var format = "URL: {0}";
...
var log = string.Format(format, url);

I have a format defined somewhere else and use the format variable, not inline string.

In C# 6, this is seems impossible:

var format = $"URL: {url}"; // Error url does not exist
...
var url = "http://google.com";
...
var log = $format; // The way to evaluate string interpolation here

Is there anyway to use string interpolation with variable declared earlier?

C# 6 seems interpolate the string inline during compile time. However consider using this feature for localization, define a format in config or simply having a format const in a class.

回答1:

No, you can't use string interpolation with something other than a string literal as the compiler creates a "regular" format string even when you use string interpolation.

Because this:

string name = "bar";
string result = $"{name}";

is compiled into this:

string name = "bar";
string result = string.Format("{0}", name);

the string in runtime must be a "regular" format string and not the string interpolation equivalent.

You can use the plain old String.Format instead.



回答2:

One approach to work around that would be to use a lambda containing the interpolated string. Something like:

Func<string, string> formatter = url => $"URL: {url}";
...
var googleUrl = "http://google.com";
...
var log = formatter(googleUrl);

In C# 7.0, you could use a local function instead of a lambda, to make the code slightly simpler and more efficient:

string formatter(string url) => $"URL: {url}";
...
var googleUrl = "http://google.com";
...
var log = formatter(googleUrl);


回答3:

String interpolation is a compiler, not library, feature.

The holes are not names, but expressions:

var r = new Rectangle(5, 4);
var s = $"area: {r.Width + r.Heigh}":

How would you do that for localization, as you intend to?

Even r only exists at compile time. In IL it's just a position on the method's variable stack.

I've done what you intend to do for resources and configuration files.

Since you can only have a finite set of "variables" to substitute, what I did was have an array (or dictionary, if you prefer) and use a regular expression to replace the names in the holes with its index. What I did even allowed for format specifiers.



回答4:

More of an idea as opposed to an answer.

For the example shown in the question, you can do the following.

var format = "URL: ";
...
var url = "http://google.com";
...
var result= $"{format} {url}";

I have an actual project where I have to do something like this a lot:

var label = "Some Label";
var value = "SomeValue";

//both label & value are results of some logic

var result = $"{label}: {value}";


回答5:

It seems that you can do it like this:

var googleUrl = "http://google.com";
var url = $"URL: {googleUrl}";

System.Console.WriteLine(url);

You can check for more details in https://msdn.microsoft.com/en-us/library/dn961160.aspx



标签: c# c#-6.0