博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VB.net 字符串 分割 及 重新倒序组装
阅读量:6136 次
发布时间:2019-06-21

本文共 707 字,大约阅读时间需要 2 分钟。

'''     ''' split with ">>>>" , and inverted order    '''     '''  123>>>>abc>>>>456     ''' 
456 > abc > 123
'''
Protected Function transGroupNamePath(ByVal groupNamePath As String) As String Dim strResult As String = "" Dim strArray As String() = Regex.Split(groupNamePath, ">>>>") For i As Integer = strArray.Length - 1 To 0 Step -1 If Not strArray(i) = "" Then If strResult = "" Then strResult = strResult & strArray(i) Else strResult = strResult & " > " & strArray(i) End If End If Next transGroupNamePath = strResult End Function

 

转载地址:http://dteua.baihongyu.com/

你可能感兴趣的文章
angularjs表达式中的HTML内容,如何不转义,直接表现为html元素
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>
[Usaco2015 dec]Max Flow
查看>>
javascript性能优化
查看>>
多路归并排序之败者树
查看>>
java连接MySql数据库
查看>>
转:Vue keep-alive实践总结
查看>>
深入python的set和dict
查看>>
C++ 11 lambda
查看>>
Hadoop2.5.0 搭建实录
查看>>
实验吧 recursive write up
查看>>
Android JSON数据解析
查看>>
DEV实现日期时间效果
查看>>
java注解【转】
查看>>
Oracle表分区
查看>>
centos 下安装g++
查看>>
嵌入式,代码调试----GDB扫盲
查看>>
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>