Results 5 comments of Matias D. Fritz

I confirm the issue on kernel image 6.11.5 too. I had created a bug report on debian with a side effect related to this issue. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1086638#34. data & data1 files...

I'm trying to do something similar, with a multiline regex but the second line is not validated at all. ``` //simple dd-MM-yyyy format const regEx=new RegExp(/^[0-9]{2,2}\/[0-9]{2,2}\/[0-9]{4,4}$/gim) const formSchema=z.object({ values: z.string().regex(regEx,...

@mxdvl Thanks for your comment. What i'm trying to acchieve is validate the textarea has all lines matching the same regex. To acomplish that with a multiline RegEx + grouping,...

@mxdvl Thanks, just a last comment , I think your proposal misess the validation itself, since the use of filter is going to keep the good lines only, and not...

@mxdvl Just to complete my scenario, and maybe this post helps someone else. I was able to work arround it using refine() for validation. ( this is a similar behaviour...