Is there an equivalent to 'sscanf()' in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T17:22:24Zhttp://stackoverflow.com/feeds/question/492262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net2Is there an equivalent to 'sscanf()' in .NET?doekman2009-01-29T16:08:31Z2009-05-20T13:08:43Z
<p>The .NET Framework gives us the <a href="http://msdn.microsoft.com/en-us/library/b1csw23d.aspx" rel="nofollow">Format</a> method:</p>
<pre><code>string s = string.Format("This {0} very {1}.", "is", "funny");
// s is now: "This is very funny."
</code></pre>
<p>I would like an "Unformat" function, something like:</p>
<pre><code>object[] params = string.Unformat("This {0} very {1}.", "This is very funny.");
// params is now: ["is", "funny"]
</code></pre>
<p>I know something similar exists in the ANSI-C library (<a href="http://en.wikipedia.org/wiki/Printf" rel="nofollow">printf</a> vs <a href="http://en.wikipedia.org/wiki/Scanf" rel="nofollow">scanf</a>). </p>
<p>The question: is there something similiar in C#?</p>
<p>Update: Capturing groups with regular expressions are not the solution I need. They are also one way. I'm looking for a system that can work <strong>both ways</strong> in a single format. It's OK to give up some functionality (like types and formatting info).</p>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492275#4922752Answer by endian for Is there an equivalent to 'sscanf()' in .NET?endian2009-01-29T16:11:03Z2009-01-29T16:11:03Z<p>You could do string[] parts = string.Split(' '), and then extract by the index position parts[1] and parts [3] in your example.</p>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492278#492278-1Answer by Sean for Is there an equivalent to 'sscanf()' in .NET?Sean2009-01-29T16:12:44Z2009-01-29T16:12:44Z<p>You'll need to write a regular expression to get this type of functionality.</p>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492281#4922812Answer by annakata for Is there an equivalent to 'sscanf()' in .NET?annakata2009-01-29T16:12:50Z2009-01-29T16:12:50Z<p>Regex with grouping?</p>
<pre><code>/This (.*?) very (.*?)./
</code></pre>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492284#4922848Answer by mquander for Is there an equivalent to 'sscanf()' in .NET?mquander2009-01-29T16:13:00Z2009-01-29T16:13:00Z<p>There's no such method, probably because of problems resolving ambiguities:</p>
<pre><code>string.Unformat("This {0} very {1}.", "This is very very funny.")
// are the parameters equal to "is" and "very funny", or "is very" and "funny"?
</code></pre>
<p>Regular expression <a href="http://www.regular-expressions.info/brackets.html" rel="nofollow">capturing</a> <a href="http://www.regular-expressions.info/named.html" rel="nofollow">groups</a> are made for this problem; you may want to look into them.</p>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492287#4922871Answer by Anton Gogolev for Is there an equivalent to 'sscanf()' in .NET?Anton Gogolev2009-01-29T16:13:38Z2009-01-29T16:13:38Z<p>Yep. These are called "regular expressions". The one that will do the thing is</p>
<pre><code>This (?<M0>.+) very (?<M1>.+)\.
</code></pre>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492292#4922920Answer by mhenry1384 for Is there an equivalent to 'sscanf()' in .NET?mhenry13842009-01-29T16:14:02Z2009-01-29T16:14:02Z<p>Using regular expressions is your best bet. Investigate the Regex class.</p>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492948#4929481Answer by doekman for Is there an equivalent to 'sscanf()' in .NET?doekman2009-01-29T19:02:48Z2009-01-29T19:08:44Z<p>@mquander: Actualy, PHP solves it even different:</p>
<pre><code>$s = "This is very very funny.";
$fmt = "This %s very %s.";
sscanf($s, $fmt, $one, $two);
echo "<div>one: [$one], two: [$two]</div>\n";
//echo's: "one: [is], two: [very]"
</code></pre>
<p>But maybe your regular expression remark can help me. I just need to rewrite <code>"This {0} very {1}."</code> to something like: <code>new Regex(@"^This (.*) very (.*)\.$")</code>. This should be done programmatical, so I can use one format string on the public class interface.</p>
<p>BTW: I've already have a parser to find the parameters: see the <a href="http://haacked.com/archive/2009/01/14/named-formats-redux.aspx" rel="nofollow">Named Format Redux</a> blog entry by <a href="http://haacked.com/" rel="nofollow">Phil Haack</a> (and yes, I also want named paramters to work both ways).</p>
http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/887792#8877921Answer by Nuno Rodrigues for Is there an equivalent to 'sscanf()' in .NET?Nuno Rodrigues2009-05-20T13:08:43Z2009-05-20T13:08:43Z<p>I came across the same problem, i belive that there is a elegante solution using REGEX... but a came up with function in C# to "UnFormat" that works quite well. Sorry about the lack of comments.</p>
<pre><code> /// <summary>
/// Unformats a string using the original formating string.
///
/// Tested Situations:
/// UnFormat("<nobr alt=\"1\">1<nobr>", "<nobr alt=\"{0}\">{0}<nobr>") : "1"
/// UnFormat("<b>2</b>", "<b>{0}</b>") : "2"
/// UnFormat("3<br/>", "{0}<br/>") : "3"
/// UnFormat("<br/>4", "<br/>{0}") : "4"
/// UnFormat("5", "") : "5"
/// UnFormat("<nobr>6<nobr>", "<nobr>{0}<nobr>") : "6"
/// UnFormat("<nobr>2009-10-02<nobr>", "<nobr>{0:yyyy-MM-dd}<nobr>") : "2009-10-02"
/// UnFormat("<nobr><nobr>", "<nobr>{0}<nobr>") : ""
/// UnFormat("bla", "<nobr>{0}<nobr>") : "bla"
/// </summary>
/// <param name="original"></param>
/// <param name="formatString"></param>
/// <returns>If an "unformat" is not possible the original string is returned.</returns>
private Dictionary<int,string> UnFormat(string original, string formatString)
{
Dictionary<int, string> returnList = new Dictionary<int, string>();
try{
int index = -1;
// Decomposes Format String
List<string> formatDecomposed = new List<string> (formatString.Split('{'));
for(int i = formatDecomposed.Count - 1; i >= 0; i--)
{
index = formatDecomposed[i].IndexOf('}') + 1;
if (index > 0 && (formatDecomposed[i].Length - index) > 0)
{
formatDecomposed.Insert(i + 1, formatDecomposed[i].Substring(index, formatDecomposed[i].Length - index));
formatDecomposed[i] = formatDecomposed[i].Substring(0, index);
}
else
//Finished
break;
}
// Finds and indexes format parameters
index = 0;
for (int i = 0; i < formatDecomposed.Count; i++)
{
if (formatDecomposed[i].IndexOf('}') < 0)
{
index += formatDecomposed[i].Length;
}
else
{
// Parameter Index
int parameterIndex;
if (formatDecomposed[i].IndexOf(':')< 0)
parameterIndex = Convert.ToInt16(formatDecomposed[i].Substring(0, formatDecomposed[i].IndexOf('}')));
else
parameterIndex = Convert.ToInt16(formatDecomposed[i].Substring(0, formatDecomposed[i].IndexOf(':')));
// Parameter Value
if (returnList.ContainsKey(parameterIndex) == false)
{
string parameterValue;
if (formatDecomposed.Count > i + 1)
if (original.Length > index)
parameterValue = original.Substring(index, original.IndexOf(formatDecomposed[i + 1], index) - index);
else
// Original String not valid
break;
else
parameterValue = original.Substring(index, original.Length - index);
returnList.Add(parameterIndex, parameterValue);
index += parameterValue.Length;
}
else
index += returnList[parameterIndex].Length;
}
}
// Fail Safe #1
if (returnList.Count == 0) returnList.Add(0, original);
}
catch
{
// Fail Safe #2
returnList = new Dictionary<int, string>();
returnList.Add(0, original);
}
return returnList;
}
</code></pre>