Global It Leader!!



 
 

VB 숫자만 뽑아내기

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 4,478회 작성일 13-12-25 17:30

본문

'문자열과 문자열 사이에 숫자 뽑아내기
Private Sub Form_Load()
    Dim startPos As Integer
    Dim endPos As Integer
    Dim FindWord As String
    FindWord = "가나다라마바사$11113$아자차"
    startPos = InStr(1, FindWord, "$")
    endPos = InStr(startPos + 1, FindWord, "$")
    MsgBox Mid(FindWord, startPos + 1, endPos - startPos - 1)
End Sub

'숫자만 뽑아내기
Dim data1 As String
Dim data2 As String
Dim i As Integer
Dim data1_len As Integer
Dim data1_1ch As String
data1 = "GX-L9-T034"
data1_len = Len(data1)
data2 = ""
For i = 1 To data1_len
    data1_1ch = Mid(data1, i, 1)
   
    If (IsNumeric(data1_1ch) = True) Then
        data2 = data2 + data1_1ch
    End If
Next i
MsgBox data2

댓글목록

등록된 댓글이 없습니다.

전체 440
게시물 검색
컴퓨터언어 목록
번호 제목 글쓴이 조회 날짜
280 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4801 01-23
279 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4577 01-21
278 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4413 01-21
277 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5168 01-21
276 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4782 01-18
275 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5620 01-18
274 Mysql no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4533 12-31
열람중 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4479 12-25
272 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11589 12-25
271 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5440 12-24
270 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4872 12-24
269 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4664 12-23
268 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4385 12-23
267 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5106 12-20
266 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4935 12-20
265 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6300 12-20
264 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4896 12-20
263 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10186 12-19
262 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4241 12-19
261 Mysql no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4637 12-18