我想查老公开房记录,准备用起诉离婚用,该怎么查

我想查老公开房记录,准备用起诉离婚用,该怎么查To call the function:mynewvar = PCasefunc(txtFieldName)<%Function PCase(strInput) Dim iPosition Our current po

To call the function:
mynewvar = PCasefunc(txtFieldName)

<%
Function PCase(strInput)
    Dim iPosition ' Our current position in the string (First character = 1)
    Dim iSpace ' The position of the next space after our iPosition
    Dim strOutput ' Our temporary string used to build the function's output

    iPosition = 1

    Do While InStr(iPosition, strInput, " ", 1) <> 0
            iSpace = InStr(iPosition, strInput, " ", 1)
            strOutput = strOutput & UCase(Mid(strInput, iPosition, 1))
            strOutput = strOutput & LCase(Mid(strInput, iPosition + 1, iSpace - iPosition))
            iPosition = iSpace + 1
    Loop

    strOutput = strOutput & UCase(Mid(strInput, iPosition, 1))
    strOutput = strOutput & LCase(Mid(strInput, iPosition + 1))

    PCase = strOutput
End Function

  • 发表于 2021-04-10 10:29
  • 阅读 ( 283 )
  • 分类:互联网

0 条评论

请先 登录 后评论
阿飞
阿飞

703 篇文章

你可能感兴趣的文章

相关问题