如果字符串大于255个字符,则删除字符

时间:2019-10-03 09:42:58

标签: c# asp.net-mvc unit-testing

如果字符串长度超过varchar(255)长度,我想删除字符串字符,并将其保存在c#中的数据库中

我找不到任何解决方案。

string test.RatingItemName="hshhhdhhdshdsdsddssdsdsghdsh";

if (test.RatingItemName > varchar(255))
{
    //trim the extra characters after varchar(255)
}

1 个答案:

答案 0 :(得分:6)

只需使用substring。试试:

string test.RatingItemName="hshhhdhhdshdsdsddssdsdsghdsh";
if(test.RatingItemName.Length>255)
{
   test = test.RatingItemName.Substring(0,255);
}