정규표현식 Regex.Split 정규표현식에 해당되는 내용을 배열로 저장 문자형 데이터를 뽑음 Imports System.Text.RegularExpressions Module Module1 Sub Main() ' The input string. Dim expression As String = "3 * 5 = 15" ' Call Regex.Split. Dim operands() As String = Regex.Split(expression, "\s+") ' Loop over the elements. For Each operand As String In oper..