ASP去掉字符串头尾连续回车和空格的Function
代码片段如下:
```vbscript
'去除字符串首尾连续的回车与空格的函数
Function TrimVBcrlf(ByVal str As String) As String
TrimVBcrlf = RemoveLeadingSpacesAndNewlines(str) '移除字符串开头的空格和换行符后,再移除字符串末尾的空格和换行符。
End Function
'去除字符串开头的连续的空格和回车符号函数定义
Function RemoveLeadingSpacesAndNewlines(ByVal str As String) As String
Dim pos As Integer, isBlankChar As Boolean
pos = 1
isBlankChar = True
While isBlankChar And pos <= Len(str) '循环检查字符串开头是否有连续的空格或回车符号。
If Mid(str, pos, 1) = " " Then pos = pos + 1 ElseIf Mid(str, pos, 2) = VBcrlf Then pos = pos + 2 Else isBlankChar = False End If '如果当前字符是空格或者回车符号,则移动位置;否则退出循环。
Wend
RemoveLeadingSpacesAndNewlines = Right(str, Len(str) - pos + 1) '返回去掉开头空格和回车符号后的字符串。
End Function
'去除字符串末尾连续的空格和回车符号的函数定义
Function RemoveTrailingSpacesAndNewlines(ByVal str As String) As String
Dim pos As Integer, isBlankChar As Boolean
pos = Len(str) '从字符串末尾开始检查。
isBlankChar = True
编程语言
- ASP去掉字符串头尾连续回车和空格的Function
- Flex中在Tree绑定数据后自动展开树节点的方法
- axios简单实现小程序延时loading指示
- Laravel的throttle中间件失效问题解决方法
- 详解webpack进阶之loader篇
- Vue.js绑定HTML class数组语法错误的原因分析
- JavaScript使用二分查找算法在数组中查找数据的方
- PHP多维数组转一维数组的简单实现方法
- Vue2.0用 watch 观察 prop 变化(不触发)
- mysql 5.6.23 安装配置环境变量教程
- SQL Server两种分页的存储过程使用介绍
- jquery模拟多级复选框效果的简单实例
- 如何用javascript计算文本框还能输入多少个字符
- js中el表达式的使用和非空判断方法
- ajax返回object Object的快速解决方法
- XML CDATA的作用