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?
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?
var strings = "90-49-5432-593-593".Split("-"[0]);