如何提取子字符串?

时间:2017-03-01 14:05:07

标签: delphi

我在delphi中有功能

@media(max-width:1000px){ input#product_addtocart { position: relative; float:right; } }

如何获取输出 字符到2到4。

示例:7121334

  • 结果必须是:121

cSerial.text = ......................................

1 个答案:

答案 0 :(得分:7)

您可以使用Copy函数从字符串中提取字符序列:

cSerial.Text := Copy(Result, 2, 3);

请注意,第三个参数是要提取的字符数,而不是最后一个字符的索引。