Not Monitored
Tag not monitored by Microsoft.
41,956 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Let say i have this-> Thequickbrown=foxjumps using regex extracting the strings before the equal sign then adding comma every character without using the split() so the output would be T,h,e,q,u,i,c,k,b,r,o,w,n thank you for any suggestions..
match(/^[^=]*/)
this gets the string before the equal sign.. the problem is how to nest another match if this is the solution so that the output would be separated by comma every letter
ok got it
.match(/^[^Z]*/).toString().match(/[^]/g)