Generate Random Strings

Generate Random Strings

This code helps test SQL functions or other string-manipulation routines so you can generate random strings. You can generate random-length strings with random characters and set ASCII bounds, both upper and lower:

 	Public Function RandomString(iLowerBoundAscii As _		Integer, iUpperBoundAscii As Integer, _		lLowerBoundLength As Long, _		lUpperBoundLength As Long) As String		Dim sHoldString As String		Dim lLength As Long		Dim lCount As Long		'Verify boundaries		If iLowerBoundAscii < 0 Then iLowerBoundAscii = 0		If iLowerBoundAscii > 255 Then iLowerBoundAscii = 255		If iUpperBoundAscii < 0 Then iUpperBoundAscii = 0		If iUpperBoundAscii > 255 Then iUpperBoundAscii = 255		If lLowerBoundLength < 0 Then lLowerBoundLength = 0		'Set a random length		lLength = Int((CDbl(lUpperBoundLength) - _			CDbl(lLowerBoundLength) + _			1) * Rnd + lLowerBoundLength)		'Create the random string		For lCount = 1 To lLength			sHoldString = sHoldString & _				Chr(Int((iUpperBoundAscii - iLowerBoundAscii _				+ 1) * Rnd + iLowerBoundAscii))		Next		RandomString = sHoldString	End Function
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across