我有一列产品编号,其格式如下:
MK444LLA
...相同的数字和字母模式,相同的字符数。我需要在每个单元格中插入一个/
,这样它们最终都会像这样:
MK444LL/A
我认为我只需要第一行的解决方案,然后我可以将其应用于整个列。
答案 0 :(得分:1)
使用Left
and Right
string functions和concatenate the three parts together with &
。
[HttpGet]
public async Task<IActionResult> Edit()
{
List<MyModel> model = await GetCurrentInfoAsync();
return View(model);
}
[HttpPost]
public async Task<ActionResult> Edit(List<MyModel> model)
{
// here is where I have the issue
}
Left(Range("A1").Text, 7) & "/" & Right(Range("A1").Text, 1)
- 返回前七个字符。
Left(Range("A1").Text, 7)
- 返回最后一个字符。