简体   繁体   中英

How to split string in View in MVC?

In my View I have this condition:

@if (User.Identity.Name == "abc")
{
   ... do this!
}

How can I split this string "User.Identity.Name" in View (in MVC) so I can create new condition, something like this:

string last = User.Identity.Name.Substring(User.Identity.Name.LastIndexOf('.') + 1);
if (last == "this")
{
   ... do this!
}

thanks.

you can do it like this:

@{

    var temp= User.Identity.Name.Split('.');

    if (temp[temp.Count() - 1] == "this")
    {

    }

}

or if "." will be only one time in that string then you can hardcode like this:

@{

    var temp= User.Identity.Name.Split('.');

        if (temp[1] == "this")
        {

        }
}

see below example , which finds last word of a string after last dot in it.

String str = "abc.def.xyz";

String last = str.substring(str.lastIndexOf('.')+1);
System.out.println(last);
if(last.equals("something")){
    //do this
}

else{
    //do this
}

here last comes as xyz

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM