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 strstr="abcdef" Mid(str,2,4) ' "bcde" ' 시작, 길이Mid(str,2) ' "bcdef" ' 시작 인덱스 PHP $str="abcdef"; substr($str,2,4); //"cdef" //시작, 길이substr($str,..