String aleatoreo


/ Published in: VB.NET
Save to your folder(s)

Esta función devuelve un string aleatoreo con un largo aleatoreo, con un mínimo y un máximo.
El uso más común es solo especificar el largo máximo.
Especialmente útil para pruebas unitarias.

NOTA: depende de http://snipplr.com/view/14580/nmero-aleatorio/


Copy this code and paste it in your HTML
  1. Public Shared Function TextoAleatorio(Optional ByVal largoMinimo As Int16 = 1, Optional ByVal largoMaximo As Int16 = Int16.MaxValue) As String
  2. Dim i As Integer
  3. Dim largo As Integer = NumeroAleatorio(largoMaximo, largoMinimo)
  4. Dim strTemp As New StringBuilder(largo)
  5. For i = 0 To largo - 1
  6. strTemp.Append(Chr(NumeroAleatorio(maximo:=90, minimo:=65)))
  7. Next
  8. Return strTemp.ToString()
  9. End Function

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.