asp截取字符串的两种应用

时间:2009-08-19 17:11:00 

1、纯粹的截取字符串

function cutstr(thestr1,strlen) 
dim l,t,c 
l=len(thestr1) 
if l《1 then exit function 
t=0 
for dxy1=1 to l 
c=Abs(asc(Mid(thestr1,dxy1,1))) 
if c>255 then 
t=t+2 
else 
t=t+1 
end if 
if t>=strlen then 
thev=mid(thestr1,1,dxy1) 
exit for 
else 
thev=thestr1 
end if 
next 
cutstr=thev 
end function

2、截取字符串,不足用空格补上

function cutstr(thestr,strlen) 
dim l,t,c 
l=len(thestr) 
t=0 
for dxy=1 to l 
c=Abs(asc(Mid(thestr,dxy,1))) 
if c>255 then 
t=t+2 
else 
t=t+1 
end if 
if t>=strlen then 
thev=left(thestr,dxy) 
exit for 
else 
bu=strlen-t 
for bui=1 to bu 
strbu=" " 
strbuall=strbuall&strbu 
next 
thev=thestr&strbuall 
strbu="" 
strbuall="" 
end if 
next 
cutstr=thev 
end function


 

标签:字符串,函数
0
投稿

猜你喜欢

  • Windows server 2008 r2上安装MySQL5.7.10步骤

    2024-01-15 06:47:11
  • 关于HTML5的data-*自定义属性的总结

    2024-04-19 10:17:50
  • Python基础之类的定义和使用详解

    2023-03-10 08:23:34
  • ASP实现文件直接下载的代码

    2011-04-11 10:56:00
  • Python爬取奶茶店数据分析哪家最好喝以及性价比

    2021-02-19 08:41:45
  • gorm golang 并发连接数据库报错的解决方法

    2024-01-24 07:54:44
  • SQL集合函数中case when then 使用技巧

    2011-09-30 11:54:59
  • Python unittest discover批量执行代码实例

    2023-08-14 14:05:37
  • Python使用win32com.client的方法示例

    2021-03-22 14:32:48
  • 5个Python杀手级的自动化脚本分享

    2022-11-21 12:03:54
  • 理解Sql Server中的聚集索引

    2024-01-23 11:51:46
  • React实现表格选取

    2023-08-25 02:56:17
  • Python3中的最大整数和最大浮点数实例

    2021-04-05 01:37:16
  • Pytorch抽取网络层的Feature Map(Vgg)实例

    2021-10-20 11:46:46
  • python中k-means和k-means++原理及实现

    2022-01-17 10:52:07
  • sqlserver 数据库日志备份和恢复步骤

    2024-01-23 20:55:00
  • 最令人蛋疼的10种用户体验设计师

    2011-08-05 18:51:07
  • python生成器的使用方法

    2021-12-03 22:40:49
  • 关于Python的高级数据结构与算法

    2023-12-22 00:29:40
  • 利用Python制作一个简单的天气播报系统

    2023-07-30 17:35:03
  • asp之家 网络编程 m.aspxhome.com