@{
string per = item.READUSER;
string res = string.Empty;
if (!string.IsNullOrEmpty(per))
{
for (int i = 0; i < per.Split(',').Length; i++)
{
if (per.Split(',')[i].ToString().Split('|')[0] == "0")
{
res += " ";
}
else
{
res += " ";
}
res += per.Split(',')[i].ToString().Split('|')[1];
}
}
@Html.Raw(res);
}