User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T17:53:42Z http://stackoverflow.com/feeds/user/13950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75538/hidden-features-of-c/78840#78840 111 Answer by bhiggins for Hidden Features of C++? bhiggins 2008-09-17T01:09:32Z 2008-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#78812 0 Answer by bhiggins for Is XSLT worth it? bhiggins 2008-09-17T01:04:22Z 2008-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>