C# Substring 문자열 자르기 - 개발인생
Maybe your like
본문 바로가기 C# 기술 C# substring 문자열 자르기 by bryan.oh 2019. 1. 22. 반응형 C# Substring 문자열 자르기
String.Substring 을 씁니다.
string str = "abcd12345가나다라마"; Console.WriteLine("str.Substring(0, 4) = {0}", str.Substring(0, 4)); Console.WriteLine("str.Substring(4, 5) = {0}", str.Substring(4, 5)); Console.WriteLine("str.Substring(9) = {0}", str.Substring(9)); // str.Substring(-5); // -> System.ArgumentOutOfRangeException // str.Substring(100);// -> System.ArgumentOutOfRangeException // str.Substring(0, 50); // -> System.ArgumentOutOfRangeException결과
| 1 2 3 | str.Substring(0, 4) = abcd str.Substring(4, 5) = 12345 str.Substring(9) = 가나다라마 | cs |
주의
첫번째 파라메터는 index 입니다. 0보다 작거나, 자르려는 문자열보다 크면 오류가 발생합니다.
두번째 파라메터는 자르려는 Length 입니다. start index 부터의 길이가 자르려는 문자열의 길이를 넘으면 오류가 발생합니다.'C# 기술' 카테고리의 다른 글
| c# throw Exception (0) | 2019.01.27 |
|---|---|
| C# 특정 폴더의 지정된 확장자들의 파일들 가져오기 (0) | 2019.01.25 |
| C# File 쓰기 ( File, StreamWrite ) (0) | 2019.01.22 |
| TreeView DirectoryInfo (TreeView 폴더 구조 보여주기) (2) | 2019.01.20 |
| C# Color 사용하기 (0) | 2019.01.20 |
태그
c#, String.Substring, substring, substring(), 문자열자르기관련글
- c# throw Exception
- C# 특정 폴더의 지정된 확장자들의 파일들 가져오기
- C# File 쓰기 ( File, StreamWrite )
-
TreeView DirectoryInfo (TreeView 폴더 구조 보여주기)
댓글0
비밀글 등록- 분류 전체보기
- AI
- Canva
- Android
- Python
- Flutter
- AWS
- Vue.js
- Docker, k8s
- React,Node,JQuery,js
- Java
- IOS (Swift, Objective-c)
- C# 기술
- C# Windows Form 개발 따라하기
- SQL
- DB,서버,OS 등
- php
- elasticsearch
- Xamarin (IOS,Android)
- 하드웨어 프로그래밍
- Github
- 이론
- Mac 친해지기
- 개발자 인생
최근글
- FE 개발 시 참고할 만한 기능 2025.08.21
-
ghostty 자주 사용하는 단축키 (mac) 2025.04.23 -
[Ghostty] Mac 터미널 -> Ghostt⋯ 2025.04.22 -
Bastion Host 2025.02.12 -
Github action 에서 수동 실행 버튼 (⋯ 2025.02.04
인기글
-
[Ghostty] Mac 터미널 -> Ghostt⋯ 2025.04.22 -
ghostty 자주 사용하는 단축키 (mac) 2025.04.23 -
Node js, NPM 설치하기 (윈도우10) 2019.12.27 -
[MySQL] Safe mode 해제 하는 방법 2021.01.09 -
[YouTube Premium] 유튜브 결제 영수⋯ 2023.03.22
최근댓글
- 감사합니다.
- 포스팅 잘 보고 갑니다. 공감 꾸~욱 ♥ 남기고 가요~⋯
- 포스팅 잘 보고 갑니다. 공감 꾸~욱 ♥ 남기고 가요~⋯
- 출력 버튼이 없어요. ㅠ
전체 방문자
2,380,781
Today : 20
Yesterday : 72
티스토리툴바
개발인생구독하기Tag » What Is Substring In C#
-
Substring In C# - C# Corner
-
C# | Substring() Method - GeeksforGeeks
-
String.Substring Method (System) | Microsoft Learn
-
C# String Substring() (With Examples) - Programiz
-
C# Substring() Method - Tutorialspoint
-
How To Use C# String Substring
-
C# Substring Examples - Dot Net Perls
-
How To Get A Substring From A String In C#
-
C# String SubString() Method - Javatpoint
-
082 - How To Use C# String Substring - YouTube
-
What Is Substring In C# With Example? [60 Answers Found]
-
How To Check If String Contains Specified Substring In C#?
-
Visual C# .net Strings - Substring - Home And Learn Courses
-
JavaScript String Substring() Method - W3Schools