 |
|
ผมขอเทคนิคการนับจำนวนเลขซ้ำใน Array หน่อยครับจะเอามาปรับแต่งใช้ครับ |
|
 |
|
|
 |
 |
|
เขียนประมาณนี้ครับ
Code (VB.NET)
Dim Finstr As String = "1"
Dim CountNum As Integer = 0
For Each Str as String In a
if Str.Contains(Finstr) Then
CountNum += 1
End if
Next
MsgBox("มีตัวเลข 1 อยู่ทั้งหมด " & CountNum & " ตัว")
|
 |
 |
 |
 |
Date :
2017-07-06 15:46:20 |
By :
การบ้าน |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Dim a() As Integer = {1,2,3,1,1,3,2}
|
 |
 |
 |
 |
Date :
2017-07-06 15:51:35 |
By :
การบ้าน |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เขียนเป็น Function เลยครับ
Code (VB.NET)
Public Function CheckNumber(s As String,NumCheck As String) As Integer
Dim GetStr() as String = Split(s,",")
Dim CountNum As Integer = 0
For Each Str As String In GetStr
If Str.Contains(NumCheck) Then
CountNum += 1
End If
Next
Reture CountNum
End Function
|
 |
 |
 |
 |
Date :
2017-07-06 16:01:49 |
By :
การบ้าน |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่เคยใช้น่ะครับ
https://stackoverflow.com/questions/30547427/how-to-find-and-count-duplicate-numbers-in-a-string-array-in-vb-net
https://stackoverflow.com/questions/14987663/how-to-count-string-occurences-in-a-listof-string
|
 |
 |
 |
 |
Date :
2017-07-06 16:08:26 |
By :
fonfire |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|