Note

언어별 substring 비교

Delia :D 2011. 6. 30. 13:01
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#           
string str="abcdef";      
str.Substring(2);           //"cdef"   //시작인덱스
str.Substring(2,4);         //"cdef"   //시작,  길이

'Note' 카테고리의 다른 글

변수명명법  (0) 2013.04.24
웹 에디터 > Spac Editor - 무료 HTML 위지윅 웹에디터  (0) 2012.03.30