Want to generate random password, with having following points:
“randomstr”- String (First letter should be capital) (length should be always 9) “@”- Static (This value will be static) “8734”- Any Number (Random number length should no be greater than 4 digits) Output: Randomstr@8734
Hi @Random_Bot , Try with below, hope its help you. char as string = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" randomtext as string = New String(Enumerable.Repeat(characters, 9).Select(Function(s) s((New Random()).Next(s.Length))).ToArray()) output as string = String.Format("{0}@{1}…
Generating a random password without using a custom activity can be tricky, but there are definitely some ways to do it. I used to face this issue when I was automating my tasks. Instead of writing complex scripts, I found it easier to use online tools. One time, I stumbled upon this website that generates random pins, which helped me come up with quick and secure passwords on the fly. It saved me a lot of time and kept my accounts safe. If you’re looking for a simple solution, give that site a try! It could be a handy resource while you work on your project.