¹®ÀÚ¿¿¡¼ ÁöÁ¤ÇÑ À§Ä¡ºÎÅÍ ±æÀ̸¸Å ¹®ÀÚ¿À» °¡Á®¿Â´Ù.
string @StringSubstring(string source, int startindex);
string @StringSubstring(string source, int startindex, int length);
ÇÔ¼öÀÎÀÚ
string source : ´ë»ó ¹®ÀÚ¿
int startindex : ¹®ÀÚ¿À» °¡Á®¿Ã ½ÃÀÛ À§Ä¡
int length : °¡Á®¿Ã ¹®ÀÚ¿ Å©±â
¹Ýȯ °ª
ÁöÁ¤ÇÑ À§Ä¡ºÎÅÍ Å©±â¸¸Å ¹®ÀÚ¿À» ¹ÝȯÇÑ´Ù.
¿¹Á¦ 1
s = @StringSubstring("abcdefg", 3, 2);
¹®Àå¼³¸í : "abcdefg" ÀÇ ¹®ÀÚ¿¿¡¼ 3¹ø° À§Ä¡ºÎÅÍ 2°³ÀÇ ¹®ÀÚ¿ "de" ¸¦ ¹ÝȯÇÑ´Ù.
¿¹Á¦ 2
s = @StringSubstring("abcdefg", 3);
¹®Àå¼³¸í : "abcdefg" ÀÇ ¹®ÀÚ¿¿¡¼ 3¹ø° À§Ä¡ºÎÅÍ ¸¶Áö¸·±îÁö ¹®ÀÚ¿ "defg" ¸¦ ¹ÝȯÇÑ´Ù.
¹öÀüÁ¤º¸
ÃÖÃÊÁö¿ø: 10.1.0
°ü·ÃÇ׸ñ