EN
C# / .NET - get URL parameters from string
0 points
In this article, we would like to show you how to get URL parameters from string in C#.
Quick solution:
xxxxxxxxxx
1
Uri myUri = new Uri("https://dirask.com/posts?hashtags=webdev&hashtags=javascript");
2
3
string hashtags = HttpUtility.ParseQueryString(myUri.Query).Get("hashtags");
4
5
Console.WriteLine(hashtags); // Output: webdev,javascript
In this example, we get URL parameters from string using Get()
method with specified parameter name.
xxxxxxxxxx
1
using System;
2
using System.Web;
3
4
public static class Program
5
{
6
public static void Main(string[] args)
7
{
8
Uri myUri = new Uri("https://dirask.com/posts?hashtags=webdev&hashtags=javascript");
9
10
string hashtags = HttpUtility.ParseQueryString(myUri.Query).Get("hashtags");
11
12
Console.WriteLine(hashtags);
13
}
14
}
Output:
xxxxxxxxxx
1
webdev,javascript