Convert List to Matrix
What is the quickest way to convert a list: {"a", 1, 2, "b"} into a matrix: [. 1 2 .]? I expect that I can just loop through all of the elements, but I'm hoping there is a quicker way since I will be doing this many thousands of times in my application, with each list containing hundreds of elements.