Note/그밖에

js, jsp, asp, php, c# :: substring 문법비교

Delia :D 2013. 7. 3. 09:11
javascript  
var str = "abcdef";     
str = str.substring(2,4);    //결과 "cd" //시작, 끝 인덱스
str = str.substr(2,4);       //"cdef"   //시작, 길이
 
JSP(java) 
Strgin str = "abcdef";  
str.substring(2);             //"cdef"   //시작 인덱스
str.substring(2,4);          //"cd"      //시작, 끝 인덱스
 
ASP    * ASP만 인덱스가 1부터 시작한다.     
Dim str
str="abcdef"  
Mid(str,2,4)                  ' "bcde"    ' 시작, 길이
Mid(str,2)                    ' "bcdef"   ' 시작 인덱스
 
PHP         
$str="abcdef";             
substr($str,2,4);            //"cdef"    //시작, 길이
substr($str,2);               //"cdef"   // 시작 인덱스
 
C#(asp.NET)
string str="abcdef";      
str.Substring(2);           //"cdef"   //시작인덱스
str.Substring(2,4);         //"cdef"   //시작,  길이