0
我想知道如何搜索兩個字符串,選擇它們之間的所有內容,然後將其複製到剪貼板。VB.NET搜索字符串並將其複製到剪貼板
Dim str As String
str = strcode
If str.Contains(".m3u8") = True Then
MsgBox("The string Contains() '.M3U8' ")
Else
MsgBox("The String does not Contains() '.M3U8'")
End If
使代碼工作沒有錯誤,但我不知道它是如何工作的 – user3478897