User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T17:53:42Zhttp://stackoverflow.com/feeds/user/13950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75538/hidden-features-of-c/78840#78840111Answer by bhiggins for Hidden Features of C++?bhiggins2008-09-17T01:09:32Z2008-09-17T01:09:32Z<p>You can put URIs into C++ source without error. For example:</p>
<pre><code>void foo() {
http://stackoverflow.com/
int bar = 4;
...
}
</code></pre>
http://stackoverflow.com/questions/78716/is-xslt-worth-it/78812#788120Answer by bhiggins for Is XSLT worth it?bhiggins2008-09-17T01:04:22Z2008-09-17T01:04:22Z<p>I enjoy using XSLT only for changing the tree structure of XML documents. I find it cumbersome to do anything related to text processing and relegate that to a custom script that I may run before or after applying an XSLT to an XML document.</p>
<p>XSLT 2.0 included a lot more string functions, but I think it's not a good fit for the language, and there's not many implementations of XSLT 2.0.</p>