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


Messages In This Thread
Rules with prefix and suffix in same time - by fonzy35 - 02-11-2015, 11:50 PM