C# da Trim Kullanımı

 

Merhaba arkadaşlar bu makalemizde Trim metodu ile ilgili örnek yapacağız. Trim metoduyla string değerin başındaki ve sonundaki boşlukları silinir. Parola ve kullanıcı adı gibi değerlerin boşluklu olması istenmez bu tip durumlarda oldukça sık kullanılmaktadır.


String. TrimStart();//Baştaki boşlukları siler
 
String.TrimEnd(); //Sondaki boşlukları siler
 

 
 
 
 
 
 
 
 
 
 
 
Sekil 1
 
 

 
 
 
 
 
 
 
 
 
 
Sekil 2
 
 

 
 
 
 
 
 
 
 
 
 
Sekil 3
 
 

 
 
 
 
 
 
 
 
 
 
Sekil 4
 
 

Form1.cs


 

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

 

namespace textbox_trim

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            string str = textBox1.Text.Trim();

            if (str != "")

            {

                MessageBox.Show("Thank you for interest " + Environment.NewLine + " Ilginiz icin tesekkurler ""Success", MessageBoxButtons.OK, MessageBoxIcon.Information);

            }

            else

            {

                MessageBox.Show("Please enter name" + Environment.NewLine + " Lutfen isim giriniz ""Error",MessageBoxButtons.OK,MessageBoxIcon.Error);

 

            }

 

        }

    }

}

      

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

 

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...