设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1746|回复: 0
打印 上一主题 下一主题

[与其它组件] [分享]重复字符的方法 & 字符串自增函数

[复制链接]
跳转到指定楼层
1#
发表于 2006-3-30 00:20:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
快贴 & 骗贴

函数:Replace(Space(n), Space(1), str)

?Replace(Space(3), Space(1), "0")

000

'字符串自增函数
Function StrAdd(myStr As String, Optional parm As Integer = 1)
Dim strL As String, strR As String, formatStr As String
Dim L As Byte, m As Byte, n As Long
  If Len(myStr & "") = 0 Then Exit Function
    L = Len(myStr)
    m = L
   Do Until Mid(myStr, m, 1) Like "[!0-9]"      '从右边截取有效数字
    m = m - 1
    If m = 0 Then Exit Do
   Loop
   If m = L Then
        StrAdd = myStr
   Else
        formatStr = Replace(Space(L - m), Space(1), "0") '格式
        strL = left(myStr, m)                            '左边
        n = Right(myStr, L - m) + parm                   '新值
        strR = Format(Right(n, L - m), formatStr)        '右边
        StrAdd = strL & strR
   End If
End Function

?StrAdd("1d1",1)

1d2

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-5-8 23:54 , Processed in 0.096169 second(s), 24 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表