Answers for "c# how ruse split to get first element but delete all letters and keep numbers"

C#
3

how consider the first caracter in Split c#

Considerar somente a primeira string especificada para realizar o split
You can specify how many substrings to return using string.Split:

string myString = "101.a.b.c.d"

var pieces = myString.Split(new[] { '.' }, 2);
Returns:

101
a.b.c.d
Posted by: Guest on April-28-2020
4

c# remove first 5 characters from string

str = str.Substring(n); //Where n is the number of characters you want to remove
Posted by: Guest on April-20-2020

Code answers related to "c# how ruse split to get first element but delete all letters and keep numbers"

C# Answers by Framework

Browse Popular Code Answers by Language