Rules with prefix and suffix in same time
#1
Ok i'm trying to make a rule that will add prefix numbers 0000-9999 before a dictionary word and a suffix 0000-9999 after the same dictionary word

ex.: in the dictionary.txt there's only one word:
Birthday

with the rule i like to get:

0000Birthday9999
0001Birthday9998
0002Birthday9997

i did this with maskprocessor:

mp64.exe -1 0123456789 "^?1^?1^?1^?1$?1$?1$?1$?1" -o Prefix_and_Suffix_numbers_0-9999.rule

and it gave me this in a file
Prefix_and_Suffix_numbers_0-9999.rule
inside:
Code:
^0^0^0^0$0$0$0$0
^0^0^0^0$0$0$0$1
^0^0^0^0$0$0$0$2
^0^0^0^0$0$0$0$3
^0^0^0^0$0$0$0$4
^0^0^0^0$0$0$0$5
^0^0^0^0$0$0$0$6
^0^0^0^0$0$0$0$7
^0^0^0^0$0$0$0$8
^0^0^0^0$0$0$0$9

i get syntax error wile running with the dictionary

Any ideas?

TIA
#2
Syntax should be fine, but it's to many rules
#3
yes you're right it generated a 1.7GB rules file(0000 prefix and suffix 9999)
It take for ever to load the bitmap table

i did try with rules prefix 000 and suffix 999
work great

Thanks