从字符串中返回指定数目的字符

代码:

<!DOCTYPE html>

<html>

<body>

 

<%

sometext="Welcome to this Web!!"

response.write(Mid(sometext, 9, 2))

%>

 

</body>

</html>

结果:

to

相关文章