let s = 'a,b,c,123,def,ghi,jkl,mno,pqr,stu,vxw,yz'; let greedy = /,.*,\d/; let lazy = /,.*?,\d/;
greedy.test(s);
lazy.test(s);