Bài viết này sẽ hướng dẫn cách sử dụng phương thức Contains() để kiểm tra một chuỗi có tồn tại trong chuỗi khác không? trong ngôn ngữ lập trình C#.
Contains() là một phương thức của lớp String(class String) được dùng để kiểm tra một chuỗi có tồn tại trong một chuỗi khác hay không? Cú pháp của nó như sau:
bool str01.Contains(str02);
Ta sẽ đi qua một ví dụ nhỏ để hiểu rõ hơn cách hoạt đông của phương thức này.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HowToUseContains
{
class Program
{
static void Main(string[] args)
{
string str = "Welcome to my site - VNLIVES.NET";
bool bl = str.Contains("VNLIVES.NET");
if (bl == true)
{
Console.WriteLine("VNLIVES.NET is exist in string.");
}
else
{
Console.WriteLine("VNLIVES.NET isn't exist in string.");
}
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HowToUseContains
{
class Program
{
static void Main(string[] args)
{
string str = "Welcome to my site - VNLIVES.NET";
bool bl = str.Contains("VNLIVES.NET");
if (bl == true)
{
Console.WriteLine("VNLIVES.NET is exist in string.");
}
else
{
Console.WriteLine("VNLIVES.NET isn't exist in string.");
}
Console.ReadLine();
}
}
}
Kết quả sau khi thực thi ứng dụng sẽ là.
No comments:
Post a Comment