Global It Leader!!



 
 

VB 숫자만 뽑아내기

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 4,479회 작성일 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 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4578 01-21
279 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4414 01-21
278 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5169 01-21
277 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4783 01-18
276 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5621 01-18
275 Mysql no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4535 12-31
열람중 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4480 12-25
273 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11590 12-25
272 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5441 12-24
271 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4873 12-24
270 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4665 12-23
269 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4386 12-23
268 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5106 12-20
267 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4936 12-20
266 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6300 12-20
265 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4897 12-20
264 VB no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10187 12-19
263 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4241 12-19
262 Mysql no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4639 12-18
261 Mysql no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5601 12-18