我在delphi中有功能
@media(max-width:1000px){ input#product_addtocart { position: relative; float:right; } }
如何获取输出 字符到2到4。
示例:7121334
cSerial.text = ......................................
答案 0 :(得分:7)
您可以使用Copy
函数从字符串中提取字符序列:
cSerial.Text := Copy(Result, 2, 3);
请注意,第三个参数是要提取的字符数,而不是最后一个字符的索引。