maska icon indicating copy to clipboard operation
maska copied to clipboard

How to write mask for numbers like '123 456 789,0', '12 345 678,9' ?

Open DenniLa2 opened this issue 3 years ago • 1 comments

subject

DenniLa2 avatar Dec 21 '21 15:12 DenniLa2

Hi @DenniLa2 you can achieve this mask with patterns. please look at the HEX color example from demo. First create a custom token - for example letter 'N' - and then assign a regex pattern like [0-9] to the mask. The final result should be like this:

v-maska="{ mask: '### ### ###,N', tokens: { 'N': { pattern: /[0-9]/ }}}"

hasanparasteh avatar Dec 26 '21 13:12 hasanparasteh

With v2 maska has reversed option, maybe it’s what you need.

beholdr avatar Dec 04 '22 15:12 beholdr