My Name is Kay....

DIY , 먹방 , 개발 , 육아 , 여행 좋아합니다.
AdBlock 사용시 화면이 정상적으로 노출되지 않습니다.
포스팅 관련 문의 및 개발 문의는 Email : wkzkfmxksi@gmail.com

추가 포스팅이 이뤄지지 않는 블로그입니다. 문의는 wkzkfmxksi@gmail.com 으로 연락주세요.
kay
조회 수 3074 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

문자열 검색 샘플입니다.


msdn Url : http://msdn.microsoft.com/ko-kr/library/dy85x1sa.aspx


// This example demonstrates the String.Contains() method
using System;

class Sample 
{
    public static void Main() 
    {
    string s1 = "The quick brown fox jumps over the lazy dog";
    string s2 = "fox";
    bool b;
    b = s1.Contains(s2);
    Console.WriteLine("Is the string, s2, in the string, s1?: {0}", b);
    }
}
/*
This example produces the following results:

Is the string, s2, in the string, s1?: True
*/
?

  1. multiLine TextBox 자동 스크롤시키기

    Date2013.10.29 CategoryC# Bykay Views3389
    Read More
  2. DataGridView 에서 열 숨기기

    Date2013.07.22 CategoryC# Bykay Views3333
    Read More
  3. ComboBox ReadOnly 속성

    Date2013.07.08 CategoryC# Bykay Views3293
    Read More
  4. comboBox 디비 데이터로 채워넣기

    Date2013.07.08 CategoryC# Bykay Views3286
    Read More
  5. 스레드에서 함수 호출시 매개변수 넘기기

    Date2013.10.29 CategoryC# Bykay Views3214
    Read More
  6. 문자열 검색 " String.Contains() "

    Date2013.09.04 CategoryC# Bykay Views3074
    Read More
  7. MDI 폼 한번에 모두 닫기

    Date2013.07.25 CategoryC# Bykay Views2825
    Read More
  8. 프로그래밍 방식으로 버튼의 Click 이벤트 호출

    Date2013.07.23 CategoryC# Bykay Views2730
    Read More
  9. WindowsForms Application DataGridView

    Date2013.07.05 CategoryC# Bykay Views2647
    Read More
  10. 웹 사이트 모니터링 프로그램 C#

    Date2015.08.18 CategoryC# Bykay Views2592
    Read More
  11. 최근에 사용한 프로젝트 삭제

    Date2013.07.10 CategoryVS Bykay Views2513
    Read More
  12. C# 소수점 지정

    Date2014.10.14 CategoryC# Bykay Views1836
    Read More
  13. C# SMTP 서버를 이용한 메일 발송

    Date2015.07.30 CategoryC# Bykay Views1416
    Read More
  14. IIS에서 .Net 날짜 형식 YYYY-MM-DD

    Date2015.08.24 CategoryVS Bykay Views947
    Read More
  15. .net Release / Debug 콤보박스 안보일때

    Date2015.05.08 CategoryVS Bykay Views771
    Read More
Board Pagination Prev 1 2 Next
/ 2