我有一个.css
文件,我想找到所有以/images_rtl/
开头并以.png
结尾的字符串,然后将它们添加到列表框中。
对此进行编程需要什么样的代码?
答案 0 :(得分:0)
做这样的事......
For Each item In RichTextBox1.Lines
' See if input matches one of these starts.
If item.StartsWith("/images_rtl/") AndAlso item.EndsWith(".png") Then
listbox1.items.add(item)
End If
Next