Regex/Textmate Confusion - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T18:59:12Zhttp://stackoverflow.com/feeds/question/315718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315718/regex-textmate-confusion1Regex/Textmate Confusionesiegel2008-11-24T22:23:24Z2008-11-25T20:04:36Z
<p>I'm trying to create a Textmate snippet, but have run into some difficulties. Basically, I want to type in a Name and split it into its parts.</p>
<p>Example,</p>
<p>Bill Gates: (Bill), (bill), (Gates), (gates), (Bill Gates), (Bill gates), (bill Gates), (bill gates)</p>
<p>EDIT**</p>
<p>So I most certainly can produce these results quite simply if I was using a programming language. For example, I could split the words and then call the uppercase or lowercase functions to produce this output. </p>
<p>But in my situation I am using Textmate and it regular expression capabilities to create a tab snippet. I want to type some trigger key, ie doit, press tab and then type in a username. Then the ouput above will be created. This won't save me that much time, but I feel like I come across this sort of stuff in Textmate quite frequently and want to figure it out.</p>
<p>I have been using this as a reference, but still don't know how use regexps to be selective with the words and upper and lowercase the values (\u \U \l \L)</p>
<p><a href="http://manual.macromates.com/en/snippets" rel="nofollow">http://manual.macromates.com/en/snippets</a></p>
http://stackoverflow.com/questions/315718/regex-textmate-confusion/315882#3158822Answer by dylanfm for Regex/Textmate Confusiondylanfm2008-11-24T23:33:01Z2008-11-24T23:33:01Z<p>You can <a href="http://drnicwilliams.com/2008/06/11/using-ruby-within-textmate-snippets-and-commands/" rel="nofollow">use Ruby for textmate snippets</a>. That should make it simpler.</p>