Merge branch 'master' of github.com:kiooeht/pesterchum

This commit is contained in:
Kiooeht 2011-04-21 01:21:39 -07:00
commit 3732539cc6

View file

@ -137,23 +137,15 @@ Gamzee
------
#####Version 1: "HoNk HoNk"
<pre>
REGEXP: "([a-zA-Z])([a-zA-Z])"
REGEXP: "([a-zA-Z])([a-zA-Z]?)"
REPLACED WITH: "upper(\1)\2"
</pre>
<pre>
REGEXP: "([a-z])([a-z])\b"
REPLACED WITH: "\1upper(\2)"
</pre>
#####Version 2: "HoNk hOnK"
<pre>
REGEXP: "(.)(.)"
REGEXP: "([\w\s])([\w\s]?)"
REPLACED WITH: "upper(\1)\2"
</pre>
<pre>
REGEXP: "([a-z])(.)\b"
REPLACE WITH: "\1upper(\2)"
</pre>
Eridan
------