프로그래밍언어/VB.NET

정규식 regex.split

부산딸랑이 2013. 5. 30. 17:30
정규표현식 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 operands

   Console.WriteLine(operand)

Next

    End Sub

End Module


"10 cats, 20 dogs, 40 fish and 1 programmer."에서

숫자형태만 뽑음

Imports System.Text.Regularexpressions


Module Module1

    Sub Main()

' The input string.

Dim sentence As String = "10 cats, 20 dogs, 40 fish and 1 programmer."

' Invoke the Regex.Split shared function.

Dim digits() As String = Regex.Split(sentence, "\D+")

' Loop over the elements in the resulting array.

For Each item As String In digits

   Console.WriteLine(item)

Next

    End Sub

End Module




'프로그래밍언어 > VB.NET' 카테고리의 다른 글

XML에 이미지 base64로 넣기  (0) 2013.06.14
이미지 포맷변환  (0) 2013.06.05
엑셀에 HTML소스 가져오기(VBA)  (0) 2013.05.24
폼에 파일 드래그로 읽어오기  (0) 2013.05.20
VB.NET 엑셀 사용하기  (0) 2013.05.17