Posts by gbauermann • 11 points
1 post
-
-1
votes2
answers710
viewsA: How to know how many characters there are after the comma c#
Break your string into an array with the split var res = suaString.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); The second position of the array will contain the part of the…