TitleCase rule with non-space chars
#3
(04-18-2017, 08:07 PM)royce Wrote: You can chain a couple of rules together:

s-  E s -

That's
- replace all dashes with spaces
- title case
- replace all spaces with dashes again

That's awesome ! I was only thinking in higher level, because I actually want it with digits. so my123password -> My123Password. I didn't realise that it suffices :
Code:
s3 E s 3
I guess the idea now is just to add rule for each digit/character, which you can probably do with the generator. I haven't looked into it yet.

One surprise, for me, was that words generated with rules are not fed back into the generator. Is it because there are rules which are not idempotent (such as insertion) ? I found it trickier to write, but, as I said, I've discovered hashcat today :"> ^^


Messages In This Thread
RE: TitleCase rule with non-space chars - by cipri_tom - 04-18-2017, 10:25 PM