如何将字符插入字符串? (VBA)

时间:2018-06-05 15:34:33

标签: vba excel-vba excel

我有一列产品编号,其格式如下:

MK444LLA

...相同的数字和字母模式,相同的字符数。我需要在每个单元格中插入一个/,这样它们最终都会像这样:

MK444LL/A

我认为我只需要第一行的解决方案,然后我可以将其应用于整个列。

1 个答案:

答案 0 :(得分:1)

使用Left and Right string functionsconcatenate 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) - 返回最后一个字符。