06-08-13, 01:06 AM
بافتراض ان c , m , r هي حروف ثابتة لاتتغير
PHP كود :
Dim str As String = "c14m30r1"
Dim numbers As String() = str.Split(New Char() {"c"C, "m"C, "r"C})
textBox1.Text = numbers(1)
textBox2.Text = numbers(2)
textBox3.Text = numbers(3)

