What's new

I will pay for someone take make me a simple program

  • Thread starter KeelanxHacks
  • Start date
  • Views 492
KeelanxHacks

KeelanxHacks

Enthusiast
Messages
216
Reaction score
23
Points
70
Sin$
0
The title says it all i need a simple program where you add a bunch of text lines
test.com
test1.com
test3.com
it will then turn those lines into
(test.com),
(test1.com),
(test3.com),
basically adds (), around each line of text
If you are capable of making this program add me on
Aim = tsgxk33l4n
Skype = keelanincorporated
 
Visual Studio

XeMen Demon

The Original Shiba Inu
Odysseus' Summit Nevar gon' happen in your lifetime Programmer
Messages
2,748
Reaction score
1,488
Points
1,162
Sin$
7
The title says it all i need a simple program where you add a bunch of text lines
test.com
test1.com
test3.com
it will then turn those lines into
(test.com),
(test1.com),
(test3.com),
basically adds (), around each line of text
If you are capable of making this program add me on
Aim = tsgxk33l4n
Skype = keelanincorporated
EDIT: Too simple
 
Pyth0n

Pyth0n

Enthusiast
Messages
362
Reaction score
169
Points
115
Sin$
0

Here's a python script which will do this for you. It will load the words you want changed from a text file and add the ( ), And yes it's free, you will be wasting your money if you're paying for something so simple.

Code:
#!/usr/bin/python
 
filename = raw_input('Enter wordlist filename (must be in the same directory): ')
wordlist = open(filename, 'r')
storage = []
 
words = wordlist.readlines()
for word in words:
    new_word = '(%s),' % word.strip()
    storage.append(new_word)
 
for i in storage:
    print i
 
Visual Studio

XeMen Demon

The Original Shiba Inu
Odysseus' Summit Nevar gon' happen in your lifetime Programmer
Messages
2,748
Reaction score
1,488
Points
1,162
Sin$
7
It is too simple to ask money for here:

Binary here - Virus Scan
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
 
namespace Money
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            string text = textBox1.Text;
            string[] textS = text.Split('\n');
            textBox1.Clear();
            foreach (string lolk in textS)
            {
                addText("(" + lolk + ")");
            }
        }
 
        public void addText(string text)
        {
            if (textBox1.Text == "")
            {
                textBox1.Text = text;
            }
            else
            {
                textBox1.AppendText(Environment.NewLine + text);
            }
        }
    }
}
 
Top Bottom
Login
Register