Open MProG opened 6 years ago
/(\w|\d){8}-(\w|\d){4}/ - will generate sumting like this 1d3f5g7h-w2e4 --- length 13 but actual result "48v1t3nH-XG33T60X0-J7WO2hel1-8hLq92so6-5" /[a-z\d]{8}/ will generate words with 8 simbols(numbers and curs) but actual result [a-z2]]]]]]]]
/(\w|\d){8}-(\w|\d){4}/
1d3f5g7h-w2e4
"48v1t3nH-XG33T60X0-J7WO2hel1-8hLq92so6-5"
/[a-z\d]{8}/
[a-z2]]]]]]]]
Seems incorrect with [ and ].
[
]
/(\w|\d){8}-(\w|\d){4}/
- will generate sumting like this1d3f5g7h-w2e4
--- length 13 but actual result"48v1t3nH-XG33T60X0-J7WO2hel1-8hLq92so6-5"
/[a-z\d]{8}/
will generate words with 8 simbols(numbers and curs) but actual result[a-z2]]]]]]]]