UUID.randomUUID().toString().replaceAll(“\W”, “”);
What does the meaning of “\W” in the above statement? Is it replace non-alphanumerics? This replaceAll method changing the entire generated random value. Let’s say 1. UUID.randomUUID().toString() 2. UUID.randomUUID().toString().replaceAll(“\W”, “”); Both 1& 2 values are totally different Please advise . Thanks in advance for your response