熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

asp中join函數實現字符串連接

2022-06-13   來源: .NET編程 

  (list[delimiter])

  參數 描述

  list Required A onedimensional array that contains the substrings to be joined

  必選項包含要聯接的子字符串一維數組

  delimiter Optional The character(s) used to separate the substrings in the returned string Default is the space character

  可選項在返回字符串中用於分隔子字符串的字符如果省略將使用空字符 ("") 如果 delimiter 是零長度字符串則在同一列表中列出全部項沒有分界符

  實例

  代碼如下 復制代碼

  dim a()b

  a()="Saturday"

  a()="Sunday"

  a()="Monday"

  a()="Tuesday"

  a()="Wednesday"

  b=Filter(a"n")

  documentwrite(join(b))

  輸出:Sunday Monday Wednesday

  實例測試效率

  代碼如下 復制代碼

  

推薦文章
Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.