Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does vbs get the last LastOne of an array string through a function

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how vbs obtains the last LastOne of the array string through the function, which is very detailed and has certain reference value. Interested friends must read it!

Just save the following code to run as jb51.vbs.

The code is as follows:

Function LastOne (Str,splitStr)

'enter characters and delimiters to get the last part

LastOne = right (Str,len (Str)-InStrRev (Str,splitStr))

End Function

Msgbox LastOne ("1, 2, 3", ")

In fact, arrays are often used in practical applications, which is a bit inefficient for a large number of strings.

'msgbox InStrRev ("1, 2, 3", ",") = 4

InStrRev returns the last occurrence of a string in another string.

The implementation of an array is as follows:

The copy code is as follows:

Function jb51 (Str,splitStr)

'enter characters and delimiters to get the last part

Strarr=split (Str,splitStr)

Lens=ubound (strarr)

'get the length of the array

Jb51 = strarr (lens)

End Function

Msgbox jb51 ("1, 2, 3", ")

This is all the content of the article "how vbs gets the last LastOne of an array string through a function". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report