Split string in ASP.Net C#

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, "/");
}

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^