我只想问:我有一个 label40.text 内容为 {a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q, r,s,t,u,v,w,x,y,z} 和我也有一个 label39.text 每次发生某些变化时都会改变它的输出。
我的问题是如何通过代码嵌入这个模拟?
如果 Label39.text = "a" 那么 label40.text "a" 的内容将被删除,字母列表将按字母顺序保留。
我希望这也发生在我的 label39.text 将其值“随机”更改的任何时候
例如如果 label39.text = "a,b,c,d,x,z" 那么 label40.text = "e,f,g,h,i,j,k,l,m,n,o,p,q ,r,s,t,u,v,w,x,y"
这是我到目前为止的代码
Dim patterns As String
patterns = Label39.Text
Dim tobefollow As String
tobefollow = Label40.Text
Dim matches As MatchCollection = Regex.Matches(patterns, tobefollow)
If Regex.IsMatch(patterns, tobefollow) Then
'this where i will put my code to make my example
End If