regex - Regular expression to get data between semicolon -


i have following text:

lemap;brsjmnb008528;ask toolbar;apnllc;09/04/2014 

i build regular expression complete words before first semicolon, 1 words between first , second semicolon, etc.

like first use case:

[^;]* 

any suggestions?

your regex:

[^;]* 

should work, maybe need capture match:

([^;]*) 

Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -