Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void button1_Click(object sender, EventArgs e)
- {
- string str1 = textBox1.Text;//переменная для ввода первого операнда
- string str2 = textBox3.Text;//переменная для ввода второго операнда
- string symbol = textBox4.Text;
- string res = "";//переменная для вывода результата
- if (comboBox1.SelectedIndex == 0) res = str1.Replace(symbol, str2);
- else if (comboBox1.SelectedIndex == 1)
- {
- res = str1.Remove(str1.IndexOf(symbol)) + str2;
- }
- label1.Text = res;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement