Dim test() As String
    Dim row, col As Long
    
    test() = Split(RichTextBox1.Text, vbCrLf)
    row = UBound(test) + 1
    col = Len(test(row - 1))获取Row和COlumn了