Quantcast
Channel: Solved » regex
Viewing all articles
Browse latest Browse all 14

How Do I Count the Number of Occurrences of a Char in a String

$
0
0

This question already has an answer here:

I am trying to get the number of occurrences of a certain character such as & in the following string.

string test = "key1=value1&key2=value2&key3=value3";

How do I determine that there are 2 ampersands (&) in the above test string variable?

Solution

You could do this:

int count = test.Split('&').Length - 1;

Or with LINQ:

test.Count(x => x == '&');

Related

The post How Do I Count the Number of Occurrences of a Char in a String appeared first on Solved.


Viewing all articles
Browse latest Browse all 14

Trending Articles