Skip to main content

Split string in ASP.Net C#

Hi everyone, I am going to share the code sample for split string in c# using string based on any string character set with Regex.

In the below example, split a dynamic URL string with the using "/" string. You can seen below code sample.

In this example, need to add namespace for Regex which are given below.

[using System.Text.RegularExpressions;]


//If Request file URL lenth is grater then 1, then call to GetNSetURLs with filepath urls string.
private string SplitStrings()
{
    string FilePath = Convert.ToString(Context.HttpContext.Request.FilePath);
    if (FilePath.Length > 1)
    {
         FilePath = GetNSetURLs(FilePath);
    }
}

private string GetNSetURLs(string FilePath)
{
    string[] urls = SplitURL(FilePath);
    if (urls != null && urls.Length > 0)
    {
         FilePath = "http://localhost:8080/Account/Index" ;
    }
    return FilePath;
}

private string[] SplitURL(string url)
{
     return Regex.Split(url, "/");
}