Simple String question

How do you split a string? If I have a string like “90-49-5432-593-593” how could I split it by the - marks?

String.Split:

var strings = "90-49-5432-593-593".Split("-"[0]);