Go Back   Hardware Forums > Software Support Forums > General Software

Reply
 
LinkBack Thread Tools
Old 08-07-2008, 11:04 AM   #1 (permalink) Top
kws
Geek Trainee
 
Join Date: Jul 2008
Posts: 3
Status: Offline
Default Please Help i need software

Does anyone know of any software that will convert letters into numbers?
So if i enter a word it will convert it into a group of numbers and will be the same numbers everytime.

Thanks kws

  Reply With Quote
Whats this? Microsoft Wireless Optical Desktop 3000
Microsoft Wireless Optical Desktop 3000
Seller Price (inc. VAT) Delivery Total Price Availability Seller Rating
Tekheads.co.uk £21.73 £4.95 £26.68 In Stock Rated: 3 out of 5 - Number of votes: 310
Micro Direct £21.14 £3.51 £24.65 In Stock Rated: 0 out of 5 - Number of votes: 37
IT247.com £59.94 Free £59.94 In Stock Rated: 4 out of 5 - Number of votes: 38
Old 08-07-2008, 02:17 PM   #2 (permalink) Top
IT
 
edijs's Avatar
 
Join Date: Sep 2006
Age: 21 Male
Posts: 494
Times Helpful: 14
My Mood: Busy
Status: Offline

My Computer

the brute force way would be to paste the text into a text editor program and use the Find-and-replace function to replace all As to 111, all Bs to 222 etc. ....

edit: MS word has also some wildcard functionality and formulaes available - see here
Send a message via Skype™ to edijs   Reply With Quote
Old 08-07-2008, 06:00 PM   #3 (permalink) Top
Big Geek
 
thomas234's Avatar
 
Join Date: Feb 2006
Age: 16 Male
Posts: 715
Times Helpful: 32
My Mood: Bored
Status: Offline

My Computer

I'll get on with writing you the software, nothing better to do
__________________
Nikon D40 + Sigma 18-200 f/3.5-6.3

A handful of photos

  Reply With Quote
Old 08-07-2008, 06:57 PM   #4 (permalink) Top
Big Geek
 
thomas234's Avatar
 
Join Date: Feb 2006
Age: 16 Male
Posts: 715
Times Helpful: 32
My Mood: Bored
Status: Offline

My Computer

There thrown together something which might do the job. It only allows lowercase, and doesn't accept any formatting, but I can't be bothered to include them!

Enjoy!
Attached Files
File Type: zip ConvertToNumbers.zip (28.5 KB, 5 views)
__________________
Nikon D40 + Sigma 18-200 f/3.5-6.3

A handful of photos

  Reply With Quote
Old 09-07-2008, 09:42 AM   #5 (permalink) Top
kws
Geek Trainee
 
Join Date: Jul 2008
Posts: 3
Status: Offline
Thanks thomas234
This is a great help thanks.
But would you have a problem if i changed a few things.
If you dont mind which file can i find the numbers in just so i can change them to completely random numbers rather than in sequence or would this not be possible.
Thanks
  Reply With Quote
Old 09-07-2008, 04:49 PM   #6 (permalink) Top
Big Geek
 
thomas234's Avatar
 
Join Date: Feb 2006
Age: 16 Male
Posts: 715
Times Helpful: 32
My Mood: Bored
Status: Offline

My Computer

It's easy to change, when I get back from work tonight I'll re-code a bit so it reads from a text file the numbers. Unless commas are used between each number, each number will have to be 2 digits. This is because it splits the code into 2 character sections, and converts them to numbers. I can change it to any number of digits if you prefer, but every number used will have to have the same number of digits. If commas or spaces are used to seperate the numbers, then this wouldn't be necessary, but it might be easier to de-crypt the message.

If you have any more requests, don't hesitate to ask.

Thomas
__________________
Nikon D40 + Sigma 18-200 f/3.5-6.3

A handful of photos


Last edited by thomas234; 09-07-2008 at 04:53 PM.
  Reply With Quote
Old 09-07-2008, 08:38 PM   #7 (permalink) Top
Big Geek
 
thomas234's Avatar
 
Join Date: Feb 2006
Age: 16 Male
Posts: 715
Times Helpful: 32
My Mood: Bored
Status: Offline

My Computer

Ok I've re-written some of the code, and the numbers are now 3 digits long (to allow for more characters to be used), and are contained within a text file called numbers.txt. The text file must be in the same directory as the executable.

Also, I've added something I created a while ago, called WormaldEncryption. You'll see what it does, it's nothing special.

The numbers relate to these characters, it is no longer a = 10, b = 11 etc..

Code:
"a", "A", "b", "B", "c", "C", "d", "D", "e", "E", "f", "F", "g", "G", "h", "H", "i", "I", "j", "J", "k", "K", "l", "L", "m", "M", "n", "N", "o", "O", "p", "P", "q", "Q", "r", "R", "s", "S", "t", "T", "u", "U", "v", "V", "w", "W", "x", "X", "y", "Y", "z", "Z", "¬", "`", "¦", "!", "\"", "£", "$", "%", "^", "&", "*", "(", ")", "-", "_", "+", "=", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "{", "}", "[", "]", ";", ":", "@", "~", "#", ",", "<", ".", ">", "/", "?", " " };
Inside each quotation marks is the character. So 100 = a, 101 = A, 102 = b etc...

Hope this helps.

Thomas
Attached Files
File Type: zip c2n.zip (10.2 KB, 2 views)
__________________
Nikon D40 + Sigma 18-200 f/3.5-6.3

A handful of photos

  Reply With Quote
Old 10-07-2008, 10:37 AM   #8 (permalink) Top
kws
Geek Trainee
 
Join Date: Jul 2008
Posts: 3
Status: Offline
Thanks Thomas, this is a great little piece.
Sorry to bother you again but could i trouble you to make one more change, i will be using the one you have just sent, but could you edit a simplified version for the other users on my pc please with only a-z letters, only in lower case, and with just 2 digits for each letter.
Sorry to be bothering you again but thanks youve been a great help.
  Reply With Quote
Old 10-07-2008, 07:15 PM   #9 (permalink) Top
Big Geek
 
thomas234's Avatar
 
Join Date: Feb 2006
Age: 16 Male
Posts: 715
Times Helpful: 32
My Mood: Bored
Status: Offline

My Computer

Yep not a problem, I've done it and attached it. The only thing to remember is that 10 = a, 11 = b, as usual, but 27 = space character. The computer recognises the space as a character, so it has to be included in the set of characters.

Once again, don't hesitate to ask for any more changes!

Thomas
Attached Files
File Type: zip c2n.zip (9.7 KB, 1 views)
__________________
Nikon D40 + Sigma 18-200 f/3.5-6.3

A handful of photos

  Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
need some software gaz2374 General Software 2 18-09-2007 11:23 PM
CGI software sunny87 Graphics Design 3 19-06-2006 10:48 PM
dvd ram software phaedrus General Software 6 08-07-2005 06:21 PM
What software do you use most often? Big B General Software 6 22-04-2005 11:44 PM
I need new software Dakota Graphics Design 5 29-12-2004 12:04 PM


All times are GMT +1. The time now is 06:05 AM.


Copyright © 2000 - 2008 · HARDWAREFORUMS.COM · All rights reserved