active questions tagged string-formatting - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T23:43:48Zhttp://stackoverflow.com/feeds/tag/string-formattinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1745726/how-to-store-printf-into-a-variable3how to store printf into a variable? Frank2009-11-17T00:07:02Z2009-12-09T20:14:49Z
<p>I want to store a formatted string using something similar to what printf does in C.</p>
<pre><code>char *tmp = (char *)sqlite3_column_text(selectstmt, 2);
const char *sqlAnswers = printf("select key from answer WHERE key = %s LIMIT 5;", tmp);
</code></pre>
<p>The following is an error obviously, I am sure alot of c programmers out there would give me a quick answer for this, thanks in adavance.</p>
http://stackoverflow.com/questions/1875676/python-3-2-6-str-format-and-regular-expressions1Python 3 (2.6+) str.format() and regular expressionsChris C2009-12-09T17:57:34Z2009-12-09T18:05:13Z
<p>Using <code>str.format()</code> is the new standard for formatting strings in Python 2.6, and Python 3. I've run into an issue when using <code>str.format()</code> with regular expressions.</p>
<p>I've written a regular expression to return all domains that are a single level below a specified domain or any domains that are 2 levels below the domain specified, if the 2nd level below is www...</p>
<p>Assuming the specified domain is delivery.com, my regex should return a.delivery.com, b.delivery.com, www.c.delivery.com ... but it should not return x.a.delivery.com.</p>
<pre><code>import re
str1 = "www.pizza.delivery.com"
str2 = "w.pizza.delivery.com"
str3 = "pizza.delivery.com"
if (re.match('^(w{3}\.)?([0-9A-Za-z-]+\.){1}delivery.com$', str1): print 'String 1 matches!'
if (re.match('^(w{3}\.)?([0-9A-Za-z-]+\.){1}delivery.com$', str2): print 'String 2 matches!'
if (re.match('^(w{3}\.)?([0-9A-Za-z-]+\.){1}delivery.com$', str3): print 'String 3 matches!'
</code></pre>
<p>Running this should give the result:</p>
<pre><code>String 1 matches!
String 3 matches!
</code></pre>
<p>Now, the problem is when I try to replace delivery.com dynamically using str.format...</p>
<pre><code>if (re.match('^(w{3}\.)?([0-9A-Za-z-]+\.){1}{domainName}$'.format(domainName = 'delivery.com'), str1): print 'String 1 matches!'
</code></pre>
<p>This seems to fail, because the <code>str.format()</code> expects the <code>{3}</code> and <code>{1}</code> to be parameters to the function. (I'm assuming)</p>
<p>I could concatenate the string using + operator</p>
<pre><code>'^(w{3}\.)?([0-9A-Za-z-]+\.){1}' + domainName + '$'
</code></pre>
<p>The question comes down to, is it possible to use <code>str.format()</code> when the string (usually regex) has "<strong>{n}</strong>" within it?</p>
http://stackoverflow.com/questions/1811884/lua-string-format-options1Lua string.format optionsRCIX2009-11-28T07:31:34Z2009-12-07T21:40:27Z
<p>This may seem like a stupid question, but what are the symbols used for string replacement in string.format? can someone point me to a simple example of how to use it?</p>
http://stackoverflow.com/questions/1840767/vbscript-what-is-the-simplest-way-to-format-a-string0VBScript: What is the simplest way to format a string?Paxenos2009-12-03T15:44:39Z2009-12-03T16:59:35Z
<p>I have the following format:
Value1 is {0} and Value2 is {1}.</p>
<p>I need to replace the numbers in the brackets with strings. This is easily done in most languages using string.Format or something along those lines. How can I do this using only vbscript?</p>
<p>I've tried: </p>
<pre><code>Replace (strFormat, "{0}", value1)
Replace (strFormat, "{1}", value2)
</code></pre>
<p>It does not work. Any solutions?</p>
http://stackoverflow.com/questions/1772753/linq-to-entities-format-date-in-select-query-expression0Linq-to-Entities: Format Date in select query expressionAbeP2009-11-20T19:33:29Z2009-12-02T10:08:52Z
<p>I am trying to get a formatted date string directly from a LINQ-to-Entities query expression.</p>
<pre><code>nonBusinessDays = (from ac in db.AdminCalendar
where ac.DateTimeValue >= calendarStartDate && ac.DateTimeValue <= calendarEndDate && ac.IsBusinessDay == false
select ac.MonthValue + "/" + ac.DayOfMonth + "/" + ac.FullYear).ToList();
</code></pre>
<p>But, I get the folloinw error message:
"Unable to cast the type 'System.Nullable`1' to type 'System.Object'. LINQ to Entities only supports casting Entity Data Model primitive types."</p>
<p>Is there any way to do this besides iterating through the result set?
Thanks!
Abe</p>
http://stackoverflow.com/questions/1811922/how-might-i-convert-integer-values-into-words-for-instance-1006-becomes-one-th1How might I convert integer values into words (for instance, 1006 becomes "one thousand and 6")? [closed]er-robinverma1987-hotmail-co-uk2009-11-28T07:55:58Z2009-11-28T16:41:04Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/466042/convert-an-integer-to-a-string-of-words">Convert an Integer to a string of words</a><br>
<a href="http://stackoverflow.com/questions/759198/how-to-convert-a-number-to-word-form-eg-72-to-seventy-two">How to convert a number to word form? eg: “72” to “Seventy two”</a> </p>
</blockquote>
<p>I want to convert an integer into a string using using C#. The main problem is that I am making a application in which user will enter the digits in a bank cheque and after clicking on the submit button the number should be displayed as is customary for currency amounts on cheques (1000 becomes "one thousand", etc.)</p>
http://stackoverflow.com/questions/1764812/width-and-precision-using0Width and Precision using *Nimbuz2009-11-19T16:55:49Z2009-11-19T17:07:37Z
<p>I'm learning Python from a book and came across this example:</p>
<pre><code>>>> '%f, %.2f, %.*f % (1/3.0, 1/3.0, 4, 1/3.0)
# Result: '0.333333, 0.33, 0.3333'
</code></pre>
<p>Don't quite understand what's happening here, especially the '4' in between.</p>
http://stackoverflow.com/questions/1751867/easiest-way-to-format-a-number-with-thousand-separators-to-an-nsstring-according0Easiest way to format a number with thousand separators to an NSString according to the LocaleMax Howell2009-11-17T21:18:29Z2009-11-18T01:14:27Z
<p>I can't seem to find an easy way to do it. The exact thing I need is:</p>
<pre><code>[NSString stringWithFormat:@"%d doodads", n];
</code></pre>
<p>Where n is an int. So for 1234 I'd want this string (under my locale):</p>
<pre><code>@"1,234 doodads"
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1663763/python-sending-command-to-gpib-instrument0Python, sending command to GPIB instrumentStefan2009-11-02T21:19:04Z2009-11-05T16:39:16Z
<p>I need to send a command to a GIPB instrument and I can do it like this: <code>power.write("volt 0.01")</code>.<br />
This command sets the output of my power source to 0.01V, however, I'm trying to take an I-V curve and want to set the source to different values and take a measurement at each value. I basically need some sort of loop to do this for me, I tried:</p>
<pre><code>k=0
while k<= 1:
power.write("volt k")
k=k+0.01
</code></pre>
<p>This doesn't work because k gets send as <code>'k'</code>, not as a number. How do I fix this?</p>
http://stackoverflow.com/questions/1668071/how-do-i-use-tex-latex-formatting-for-custom-data-tips-in-matlab3How do I use TeX/LaTeX formatting for custom data tips in MATLAB?Doresoom2009-11-03T15:32:54Z2009-11-04T01:33:28Z
<p>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 string formatting using '\theta' resulting in the symbol, but it doesn't work in this case. Is there a way to apply the LaTeX interpreter to data tips? Here's what I have so far:</p>
<pre><code>f1=figure;
t=pi/4;
r=1;
polar(t,r,'.');
dcm_obj = datacursormode(f1);
set(dcm_obj,'UpdateFcn',@polarlabel)
info_struct = getCursorInfo(dcm_obj);
datacursormode on
</code></pre>
<p>where polarlabel is defined as follows:</p>
<pre><code>function txt = polarlabel(empt,event_obj)
pos = get(event_obj,'Position');
x=pos(1);
y=pos(2);
[th,r]=cart2pol(x,y);
txt = {['R: ',num2str(r)],...
['\Theta: ',num2str(th*180/pi)]};
</code></pre>
http://stackoverflow.com/questions/1666346/c-string-format-an-integer-to-use-1000s-separator-without-leading-0-for-small-i5C# String.Format an integer to use 1000's separator without leading 0 for small integersKragen2009-11-03T09:56:49Z2009-11-03T10:08:03Z
<p>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.</p>
<p>My attempts so far have been:</p>
<pre><code>String.Format("{0} {1}", 5, 5000); // 5 5000
String.Format("{0:n} {1:n}", 5, 5000); // 5.00 5,000.00
String.Format("{0:0,0} {1:0,0}", 5, 5000); // 05 5,000
</code></pre>
<p>The output I'm after is:</p>
<pre><code>5 5,000
</code></pre>
<p>Is there something obvious that I'm missing?</p>
http://stackoverflow.com/questions/1640487/python-string-replacement-with-character-kwargs-weirdness2python string replacement with % character/**kwargs weirdnessWells2009-10-28T22:19:15Z2009-10-28T22:31:19Z
<p>Following code:</p>
<pre><code>def __init__(self, url, **kwargs):
for key in kwargs.keys():
url = url.replace('%%s%' % key, str(kwargs[key]))
</code></pre>
<p>Throws the following exception:</p>
<pre><code>File "/home/wells/py-mlb/lib/fetcher.py", line 25, in __init__
url = url.replace('%%s%' % key, str(kwargs[key]))
ValueError: incomplete format
</code></pre>
<p>The string has a format like:</p>
<pre><code>http://www.blah.com?id=%PLAYER_ID%
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1625717/is-there-a-php-function-to-format-a-currency-amount-in-accounting-format0Is there a PHP function to format a currency amount in accounting format?DWilliams2009-10-26T16:18:30Z2009-10-28T18:19:40Z
<p>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 number would be output as "($44.00)" on the report.</p>
<p>I know I can write some semi-complicated function to detect whether the number is negative and manually insert the parenthesis, but I was wondering if there was some handy PHP function that can do this for me before I re-invent the wheel. I've searched around and have not found anything that seems to do this exact task. I know about money_format, but I don't see any way to do the negative/parenthesis part. Keep in mind the code has to function whether the number is negative or positive.</p>
http://stackoverflow.com/questions/1629755/python-string-formatting-special-characters2Python string formatting special characters.hotbizz2009-10-27T09:57:44Z2009-10-27T10:19:23Z
<p>How do you make the following code work?</p>
<pre><code>example = "%%(test)%" % {'test':'name',}
print example
</code></pre>
<p>Where the desired output is "%name%"</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1605861/pythonic-way-to-print-a-table1Pythonic way to print a tableAndrea Ambu2009-10-22T08:48:48Z2009-10-22T15:32:23Z
<p>I'm using this simple function:</p>
<pre><code>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['oldnick'])
tot += 1
</code></pre>
<p>and I'm supposing nicks are no longer than 15 characters.<br />
I'd like to keep each "column" aligned, is there a some syntactic sugar allowing me to do the same but keeping the nicknames column left-aligned instead of right-aligned, without breaking column on the right?</p>
<p>The equivalent, uglier, code would be:</p>
<pre><code>def print_players(players):
tot = 1
for p in players:
print '%2d: %s \t (%d|%d) \t was: %s' % (tot, p['nick']+' '*(15-len(p['nick'])), p['x'], p['y'], p['oldnick'])
tot += 1
</code></pre>
<p>Thanks to all, here is the final version:</p>
<pre><code>def print_players(players):
for tot, p in enumerate(players, start=1):
print '%2d:'%tot, '%(nick)-12s (%(x)d|%(y)d) \t was %(oldnick)s'%p
</code></pre>
http://stackoverflow.com/questions/1588681/what-is-the-best-data-type-to-use-in-order-to-store-numbers-with-leading-zeroes3What is the best data type to use in order to store numbers with leading zeroes?Gopal2009-10-19T13:31:40Z2009-10-22T10:59:15Z
<p>In Access 2003 I need to display numbers like this while keeping the leading zeroes:</p>
<ul>
<li>080000</li>
<li>090000</li>
<li>070000 </li>
</ul>
<p>What is the best data type to use for this?</p>
http://stackoverflow.com/questions/1587778/add-comma-thousand-seperator-to-decimal-net1Add comma thousand seperator to decimal (.net)maxp2009-10-19T09:42:55Z2009-10-19T14:29:38Z
<p>I have a decimal number, say 1234.500.</p>
<p>I want to get it to display 1,234.4</p>
<p>Im currently converting it to a double to remove the trailing '0's.</p>
<p>string.Format("{0:0,0}",1234.500) removes the decimal place, and other formatting options seem to use two decimal places regardless.</p>
<p>Can anyone offer insight?</p>
http://stackoverflow.com/questions/1583916/convert-net-format-string-to-java-format-string0convert .net format string to java format stringminka2009-10-18T03:27:25Z2009-10-18T18:09:19Z
<p>I am looking at the format specifiers of C# and the patterns for formatting numeric strings in Java. </p>
<p>I am wondering if anyone has any pointers as to translating from one form to another?</p>
http://stackoverflow.com/questions/1575698/stdstring-and-format-string0std::string and format stringScott2009-10-15T23:39:36Z2009-10-16T08:02:49Z
<p>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. Also, it doesn't provide anything further than 5 decimal places. Am I going to have to stick with C strings and snprintf?</p>
<pre><code>#include <string>
#include <sstream>
#include <iostream>
template <class T>
std::string to_string(T t, std::ios_base & (*f)(std::ios_base&))
{
std::ostringstream oss;
oss << f << t;
return oss.str();
}
int main()
{
std::cout<<to_string<double>(3.1415926535897931, std::dec)<<std::endl;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1553434/-operator-in-python-over-string1% operator in python over stringXinus2009-10-12T08:50:54Z2009-10-12T08:57:50Z
<p>What does the following Python statement mean?</p>
<pre><code>send_data=""
str_len = "%#04d" % (len(send_data)/2)
</code></pre>
http://stackoverflow.com/questions/1510846/datetime-string-issue-in-c1datetime string issue in c#KentZhou2009-10-02T17:22:10Z2009-10-02T18:37:50Z
<p>Suppose I have following code to convert datetime to string:</p>
<pre><code>DateTime dt;
//...
string ds = dt.ToString("dd/MM/yyyy hh:mm")
</code></pre>
<p>If the dt is 15/02/2009 08:22, I want to the string is 15/02/2009 08:22AM
If the dt is 15/02/2009 20:22, I want to the string is 15/02/2009 08:22PM</p>
<p>How to implement it?</p>
http://stackoverflow.com/questions/1496158/convert-double-to-string-with-fixed-width0Convert double to String with fixed widthGanesh M2009-09-30T04:50:58Z2009-09-30T13:03:14Z
<p>I want to convert a double to string with fixed width.</p>
<p>If the width is 10, then I want the double value to get round off to this width.</p>
<p>For example, if value = 102.121323435345 and width is 10, then this value should be,</p>
<pre>
position==> 0123456789
value = 102.121323
</pre>
<p>I can achieve this with snprintf, but I am looking for a c++ native code to do the same.</p>
<pre><code>
char buf[125];
snprint(buf, width, "%.6f", value);
</code></pre>
<p>I tried to use the below, but it does not help me much,</p>
<pre> <code>
std::ostringstream oss;
oss << std::fixed << std::setw(10) << std::precision(6) << value;
</code></pre>
<p>std::setw guarantiees the minimum width for the value and if the value is more than the width size, it does not round off the values.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1491699/string-format-does-not-works-for-string0String Format Does Not Works For stringatromgame2009-09-29T10:19:56Z2009-09-29T10:35:21Z
<p>Hi, I have a serial number which is String type.</p>
<p>Like This;</p>
<p>String.Format("{0:####-####-####-####}", "1234567891234567" );</p>
<p>I need to see Like This, 1234-5678-9123-4567;</p>
<p>Bu this Code does not work?</p>
<p>Can you help me?</p>
http://stackoverflow.com/questions/1484375/how-applies-to-this-method-in-python3how % applies to this method in Python?Pete2009-09-27T20:17:37Z2009-09-27T20:40:35Z
<p>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 and spit back the remainder.</p>
<p>The other use is a string formatter. So I can do something like <code>'Hi there %s' % name</code>, where name is a list of names.</p>
<p>Also, if you see <code>%%</code> in a string formatting, that means a literal <code>%</code> will be entered.</p>
<p>Here is my question, I found this:</p>
<pre><code>class FormatFormatStr(FormatObj):
def __init__(self, fmt):
self.fmt = fmt
def tostr(self, x):
if x is None: return 'None'
return self.fmt%self.toval(x)
</code></pre>
<p>What does <code>return self.fmt%self.toval(x)</code> mean? It can't be a modulo because <code>tova</code>l will give me a string. It's not really a string formatter because there isn't another percent sign.</p>
<p>also, related to this:</p>
<pre><code>def csvformat_factory(format):
format = copy.deepcopy(format)
if isinstance(format, FormatFloat):
format.scale = 1. # override scaling for storage
format.fmt = '%r'
return format
</code></pre>
<p>What does the percent mean in <code>format.fmt = '%r'</code> does this mean to insert a string a la <code>repr()</code>? Or does it mean insert what the variable <code>r</code> represents? <code>r</code> in this overall program also refers to a recarray.</p>
<p>Thanks everyone. Hope this makes sense =)</p>
http://stackoverflow.com/questions/1478115/printf-seems-to-be-ignoring-string-precision1printf seems to be ignoring string precisionrampion2009-09-25T15:49:47Z2009-09-25T16:02:24Z
<p>So, I'm a bit stymied. According to <code>man 3 printf</code> on my system, the string format <code>"%5s"</code> should use the specified precision to limit the number of characters printed from the string argument given.</p>
<pre>
% man 3 printf
PRINTF(3) BSD Library Functions Manual PRINTF(3)
NAME
printf, fprintf, sprintf, snprintf, asprintf, vprintf, vfprintf,
vsprintf, vsnprintf, vasprintf -- formatted output conversion
<b>...</b>
s The char * argument is expected to be a pointer to an array of
character type (pointer to a string). Characters from the array
are written up to (but not including) a terminating NUL charac-
ter; <b>if a precision is specified, no more than the number
specified are written</b>. If a precision is given, no null
character need be present; if the precision is not specified, or
is greater than the size of the array, the array must contain a
terminating NUL character.
</pre>
<p>But my test code doesn't confirm this:</p>
<pre><code>#include <stdio.h>
int main()
{
char const * test = "one two three four";
printf("test: %3s\n", test);
printf("test: %3s\n", test+4);
printf("test: %5s\n", test+8);
printf("test: %4s\n", test+14);
return 0;
}
</code></pre>
<p>It outputs </p>
<pre>
test: one two three four
test: two three four
test: three four
test: four
</pre>
<p>When I think I should be getting</p>
<pre>
test: one
test: two
test: three
test: four
</pre>
<p>Am I doing something wrong, or is the man page just lying to me?</p>
<p>FYI: I know I could (in general) hack the string, and insert temporary <code>'\0'</code> to terminate the string (except when it's a <code>char const *</code>, like here, I'd have to copy it instead), but it's a PITA (especially if I'm trying to print two halves of something in the same printf), and I want to know why the precision is being ignored.</p>
http://stackoverflow.com/questions/1474150/how-do-i-correctly-space-multiple-string-fragments-within-a-single-bounding-recta1How do I correctly space multiple string fragments within a single bounding rectangle when priting with c#?GFalcon2009-09-24T21:05:19Z2009-09-24T21:15:48Z
<p>I am writing a function that applies special formatting to predetermined keywords when printing a string. For example, in the string - "Why won't this work?" I might need to print the word "Why" underlined and in blue. </p>
<p>I've had to implement this in pieces, printing each segment of a string with a separate call to print. This approach works with one problem - I cannot get the spacing correct when printing the strings. My keywords print over top of previous default text and are overlapped in turn by text printed afterward. </p>
<p>I am using bounding rectangles to place my strings on the printed page.</p>
<pre><code>RectangleF rectKeywordBounds = new RectangleF( 60.0, 60.0, 550.0, 1200.0);
</code></pre>
<p>Once I've printed a segment of the string, I modify the size of the rectangle by the number of characters drawn and I print the next segment of the string.</p>
<pre><code>EArgs.Graphics.DrawString(strFragment, fontBlueItalics, Brushes.Blue, rectKeywordBounds );
iLastPrintIndex = strFragment.Length + iLastPrintIndex;
</code></pre>
<p>I've used this method to change the print position of the new string segment:</p>
<pre><code>rectKeywordBounds = new Rectangle(rectKeywordBounds .X + iLastPrintIndex, rectKeywordBounds .Y, rectKeywordBounds .Width, rectKeywordBounds .Height);
</code></pre>
<p>And I've used this one:</p>
<pre><code>properSpacing = new SizeF(-((float)iLastPrintIndex), 0.0f);
rectKeywordBounds .Inflate(properSpacing);
</code></pre>
<p>Both methods result in the same overlapping of segments. The following code advances a bounding rectangle in the fashion I expect, so why doesn't the concept work when printing text within the rectangle?</p>
<pre><code>Rectangle rectKeywordBounds = new Rectangle(90, 90, 800, 100);
for (int x = 0; x < 6; x++)
{
EventArgs.Graphics.DrawRectangle(Pens.BlueViolet, rectKeywordBounds );
rectKeywordBounds = new Rectangle(rectKeywordBounds .X + 15, rectKeywordBounds .Y + 200, rectKeywordBounds .Width, rectKeywordBounds .Height);
}
</code></pre>
http://stackoverflow.com/questions/1461747/net-formatting-strings-good-practices-for-commenting2.NET Formatting strings - good practices for commenting?Cade Roux2009-09-22T18:21:09Z2009-09-22T18:49:16Z
<p>Before .NET, we had our own phrase localization system and we built in a way for comments to be nested in the formatting string like: "{0:price}". I'm finding that I miss this more and more as the years go by.</p>
<p>It doesn't appear that there is a way to document formatting strings in situ like this in .NET:</p>
<pre><code>string.Format("{0//numerator} / {1//denominator} = {2//ratio}"
,somevar
,anothervar
,yetanothervar);
</code></pre>
<p>In particular this is useful in localization/phraseology where the insertion points get reordered, without changing the code:</p>
<pre><code>string.Format("Dividing {1//denominator} into {0//numerator} gives {2//ratio}"
,somevar
,anothervar
,yetanothervar);
</code></pre>
<p>Anyone have any tricks they use to document these to avoid mistakes when terms get rearranged in maintenance/localization etc?</p>
<p>The reason that the commenting is important is that for localization and configuration, typically, the string is not in the code with the variables - I have had them in resource files, in the app.config and in databases.</p>
<p>In an actual example, a subclassed control exposes a PhraseID property (controls are mapped to IDs in an XML file generated from the form, and the form controls are translated on the fly), so the subclassed form does something like this:</p>
<pre><code>// Handle the phrases without insertion points - this is in the base class
foreach (Control in this.Controls) {
IXLatable ixl = (IXLatable) Control;
ixl.Text = GetPhrase(ixl.PhraseID);
}
// in the individual form classes, they override the behavior for complex displays:
lnkPublish.Text = string.Format(GetPhrase(lnkPublish.PhraseID), filename, foldername, userid);
</code></pre>
<p>Where the dictionary contains default and localized string like:</p>
<pre><code>phraseid, language code, phrase
1,en,"{0//filename} published to {1//foldername} by {2//userid}"
1,pl,"{2//userid} ublishedpay ethay ilefay {0//filename} otay {1//foldername}"
</code></pre>
<p>It is a lot less likely that a translator (who never sees the source code) will get the indexes wrong if they are provided with comments in the default phrase. And easier for a non-localized speaker to troubleshoot problems in a translated resource.</p>
http://stackoverflow.com/questions/1436580/asp-net-how-do-i-remove-special-characters-when-doing-a-datetime-now-tostring0(ASP.NET) How do I remove special characters when doing a DateTime.Now.ToString()JackM2009-09-17T03:27:28Z2009-09-17T03:52:39Z
<p>So I have a flashobject which I need to pass a formatted DateTime string to.</p>
<p>My code:</p>
<pre><code>string date = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
</code></pre>
<p>which outputs as: 2009-09-16 22:26:45</p>
<p>However when it is actually output to HTML and swfobject it renders it as:</p>
<pre><code>so.addVariable("inNowDate","2009-09-16+22%3a25%3a13");
</code></pre>
<p>I think this is messing up a calculation that the flash object does based off the current time. Do I need to encode or decode this? </p>
<p>Any help would be greatly appreciated! Thanks!</p>
http://stackoverflow.com/questions/1433443/automatic-unicode-string-formatting-in-java0Automatic Unicode string formatting in JavaLord Torgamus2009-09-16T14:43:45Z2009-09-16T16:59:21Z
<p>I just came across something like this:</p>
<pre><code>String sample = "somejunk+%3cfoobar%3e+morestuff";
</code></pre>
<p>Printed out, sample looks like this:</p>
<blockquote>
<p>somejunk+<code><foobar</code>>+morestuff</p>
</blockquote>
<p>How does that work? U+003c and U+003e are the Unicode codes for the less than and greater than signs, respectively, which seems like more than a coincidence, but I've never heard of Java automatically doing something like this. I figured it'd be an easy thing to pop into Google, but it turns out Google doesn't like the percent sign.</p>
http://stackoverflow.com/questions/1421604/looking-for-sed-like-functionality-in-excel1looking for 'sed' like functionality in ExcelJamie2009-09-14T13:40:54Z2009-09-14T13:46:37Z
<p>I use excel a lot to structure finite state machines. As such I often format cells so that I can cut and past entire sections into my C source directly.</p>
<p>Currently I'm having to preprocess one of my code blocks so that I can replace "-" with "_" in my identifiers. Example, in cell I might have</p>
<pre><code>#define Some-preprocessor-name
</code></pre>
<p>But I'd like to have:</p>
<pre><code>#define SOME_PREPROCESSOR_NAME
</code></pre>
<p>The upper case bit is covered by UPPER(), but the locations of the hyphens is arbitrary as is the number I'd expect to find. <strong><em>Suggestions?</em></strong></p>