I have a simple example as follows
user=djdjdjjdjdjdj; user=jdjdjdjdjdj;
And
user=djdjdjjdjdjdj;user=jdjdjdjdjdj;
Differences in white space between the two examples above. When I used Regex to separate user codes, it ok with first example. Can you advise me how to do better, this is my Regex code:
(?<=user=)([^\s]+)(?=;)