I would like to get the list of all possible combinations of 5 characters from a string containing 12 characters.
For example:
string = ABCDEFGHIJKL
sample should be output:
ABCDE
ABCDF
ABCDG
ABCDJ
etc....
I would like to get the list of all possible combinations of 5 characters from a string containing 12 characters.
For example:
string = ABCDEFGHIJKL
sample should be output:
ABCDE
ABCDF
ABCDG
ABCDJ
etc....