I want to create a regex which will match string like "123;qwe;12324", this regex is working fine:
[a-zA-Z0-9;]
But I want to allow blank spaces also if preceded or followed by ; but this is not working:
[a-zA-Z0-9;\s(?=;)]
Can someone please help.
\s*?