Is there an equivalent to 'sscanf()' in .NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:22:24Z http://stackoverflow.com/feeds/question/492262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net 2 Is there an equivalent to 'sscanf()' in .NET? doekman 2009-01-29T16:08:31Z 2009-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#492275 2 Answer by endian for Is there an equivalent to 'sscanf()' in .NET? endian 2009-01-29T16:11:03Z 2009-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 -1 Answer by Sean for Is there an equivalent to 'sscanf()' in .NET? Sean 2009-01-29T16:12:44Z 2009-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#492281 2 Answer by annakata for Is there an equivalent to 'sscanf()' in .NET? annakata 2009-01-29T16:12:50Z 2009-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#492284 8 Answer by mquander for Is there an equivalent to 'sscanf()' in .NET? mquander 2009-01-29T16:13:00Z 2009-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#492287 1 Answer by Anton Gogolev for Is there an equivalent to 'sscanf()' in .NET? Anton Gogolev 2009-01-29T16:13:38Z 2009-01-29T16:13:38Z <p>Yep. These are called "regular expressions". The one that will do the thing is</p> <pre><code>This (?&lt;M0&gt;.+) very (?&lt;M1&gt;.+)\. </code></pre> http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492292#492292 0 Answer by mhenry1384 for Is there an equivalent to 'sscanf()' in .NET? mhenry1384 2009-01-29T16:14:02Z 2009-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#492948 1 Answer by doekman for Is there an equivalent to 'sscanf()' in .NET? doekman 2009-01-29T19:02:48Z 2009-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 "&lt;div&gt;one: [$one], two: [$two]&lt;/div&gt;\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#887792 1 Answer by Nuno Rodrigues for Is there an equivalent to 'sscanf()' in .NET? Nuno Rodrigues 2009-05-20T13:08:43Z 2009-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> /// &lt;summary&gt; /// Unformats a string using the original formating string. /// /// Tested Situations: /// UnFormat("&lt;nobr alt=\"1\"&gt;1&lt;nobr&gt;", "&lt;nobr alt=\"{0}\"&gt;{0}&lt;nobr&gt;") : "1" /// UnFormat("&lt;b&gt;2&lt;/b&gt;", "&lt;b&gt;{0}&lt;/b&gt;") : "2" /// UnFormat("3&lt;br/&gt;", "{0}&lt;br/&gt;") : "3" /// UnFormat("&lt;br/&gt;4", "&lt;br/&gt;{0}") : "4" /// UnFormat("5", "") : "5" /// UnFormat("&lt;nobr&gt;6&lt;nobr&gt;", "&lt;nobr&gt;{0}&lt;nobr&gt;") : "6" /// UnFormat("&lt;nobr&gt;2009-10-02&lt;nobr&gt;", "&lt;nobr&gt;{0:yyyy-MM-dd}&lt;nobr&gt;") : "2009-10-02" /// UnFormat("&lt;nobr&gt;&lt;nobr&gt;", "&lt;nobr&gt;{0}&lt;nobr&gt;") : "" /// UnFormat("bla", "&lt;nobr&gt;{0}&lt;nobr&gt;") : "bla" /// &lt;/summary&gt; /// &lt;param name="original"&gt;&lt;/param&gt; /// &lt;param name="formatString"&gt;&lt;/param&gt; /// &lt;returns&gt;If an "unformat" is not possible the original string is returned.&lt;/returns&gt; private Dictionary&lt;int,string&gt; UnFormat(string original, string formatString) { Dictionary&lt;int, string&gt; returnList = new Dictionary&lt;int, string&gt;(); try{ int index = -1; // Decomposes Format String List&lt;string&gt; formatDecomposed = new List&lt;string&gt; (formatString.Split('{')); for(int i = formatDecomposed.Count - 1; i &gt;= 0; i--) { index = formatDecomposed[i].IndexOf('}') + 1; if (index &gt; 0 &amp;&amp; (formatDecomposed[i].Length - index) &gt; 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 &lt; formatDecomposed.Count; i++) { if (formatDecomposed[i].IndexOf('}') &lt; 0) { index += formatDecomposed[i].Length; } else { // Parameter Index int parameterIndex; if (formatDecomposed[i].IndexOf(':')&lt; 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 &gt; i + 1) if (original.Length &gt; 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&lt;int, string&gt;(); returnList.Add(0, original); } return returnList; } </code></pre>