473,804 Members | 3,570 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to generate words randomly

I want to generate some set of chars which are more than 4 chars randomly. .
.. how can i do that
Nov 19 '05 #1
5 1864
Guid!

Guid MyGuid = Guid.NewGuid();

Now MyGuid.ToString () will be a random generated string.

You can break this down to be the desired length as well

"Raghuram" <rv******@gmail .com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
I want to generate some set of chars which are more than 4 chars randomly.
. . how can i do that

Nov 19 '05 #2
If you want something pronouncable, check out this class:
http://www.evolution-internet.com/Co...nounceable.txt

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is
annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"Grant Merwitz" <gr***@workshar e.com> wrote in message
news:Ox******** *****@tk2msftng p13.phx.gbl...
Guid!

Guid MyGuid = Guid.NewGuid();

Now MyGuid.ToString () will be a random generated string.

You can break this down to be the desired length as well

"Raghuram" <rv******@gmail .com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
I want to generate some set of chars which are more than 4 chars randomly.
. . how can i do that


Nov 19 '05 #3
why, can't you pronounce "gqhjlkjfsdppos "

:-)
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
If you want something pronouncable, check out this class:
http://www.evolution-internet.com/Co...nounceable.txt

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is
annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"Grant Merwitz" <gr***@workshar e.com> wrote in message
news:Ox******** *****@tk2msftng p13.phx.gbl...
Guid!

Guid MyGuid = Guid.NewGuid();

Now MyGuid.ToString () will be a random generated string.

You can break this down to be the desired length as well

"Raghuram" <rv******@gmail .com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
I want to generate some set of chars which are more than 4 chars
randomly. . . how can i do that



Nov 19 '05 #4
"Raghuram" <rv******@gmail .com> wrote in
news:#H******** ******@TK2MSFTN GP09.phx.gbl:
I want to generate some set of chars which are more than 4 chars
randomly. . . how can i do that

You use the Random classes in .NET to generate the password length, plus
generate the random character:
http://www.brettb.com/RandomNumbersInDotNet.asp

To select the character, you would use the function:

Convert.ToChar( i).ToString() where i is an integer (take a look at an ASCII
table for the corresponding character).
Here is an example:
http://www.codeproject.com/csharp/randpassgen.asp
--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #5
thankyou i got my problem solved
"Lucas Tam" <RE********@rog ers.com> wrote in message
news:Xn******** *************** ****@127.0.0.1. ..
"Raghuram" <rv******@gmail .com> wrote in
news:#H******** ******@TK2MSFTN GP09.phx.gbl:
I want to generate some set of chars which are more than 4 chars
randomly. . . how can i do that

You use the Random classes in .NET to generate the password length, plus
generate the random character:
http://www.brettb.com/RandomNumbersInDotNet.asp

To select the character, you would use the function:

Convert.ToChar( i).ToString() where i is an integer (take a look at an
ASCII
table for the corresponding character).
Here is an example:
http://www.codeproject.com/csharp/randpassgen.asp
--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
8291
by: Laphan | last post by:
Hi All This is a strange request, but I just cannot fathom how to do it. In theory the requirement is very basic, but in practise its a noodle!! I have 10 team names like so: Team A Team B
1
1489
by: jobz | last post by:
I need to randomly pick films from a list to automatically generate a timetable. Each film has a priority and weighting that affects how often it is picked. For example, say we have 3 films with the following priority and weighting, A 1 5% B 2 10% C 3 5% B should be picked more often because of the higher weighting. If films
4
5909
by: Marc Dansereau | last post by:
Hi all, I wonder what is the most efficient way to generate random point on a line defined by 2 double points (x0,y0) and (x1,y1). Here is the pseudocode of my method : for each point { dx=x1-x0 dy=y1-y1
1
3274
by: Benny Ng | last post by:
Hi,All, Export Method: ------------------------------------------------------------------------- strFileNameExport = "Results" Response.Clear() Response.Buffer = True Response.ContentType ="application/vnd.ms-excel" 'application/msword
7
2417
by: ad | last post by:
Hi, How can a generate an alpha a - z randomly?
1
1508
by: ad | last post by:
From the past posted, I know char c = (char)rnd.Next('a', 'z' + 1); can generate a alpha randomly. But now I want to generate a alpha or a digit randomly. ('0'..'9' or 'a'..'z') How can I do?
9
1716
by: Alan Isaac | last post by:
I need access to 2*n random choices for two types subject to a constraint that in the end I have drawn n of each. I first tried:: def random_types(n,typelist=): types = typelist*n random.shuffle(types) for next_type in types: yield next_type
20
7863
by: jjmillertime | last post by:
I'm new so i apologize if this is in the wrong spot. I'm also new to programming in C and i've been searching for quite a while on how to create a program using C that will generate two random numbers, multiply them, and ask you for the result. It also needs to have four responses for both right and wrong answers and should print them randomly as well. The program should use at least 2 functions. Any help would be greatly appreciated. ...
1
1541
by: sugard | last post by:
Hey, I need to generate an id number randomly. This number generated must be unique. Also though this number must be saved as a String. Can please some1 help me and tell me how to do this? Thanks
0
9705
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9576
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10567
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10310
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9138
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7613
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6847
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3809
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.