一.实习题目:串操作 二.实习目的:掌握串操作程序设计的基本方针 三.实习内容:将首地址DATA1按字节存储的数据块通过使用字符串操作将其移动到首地址为 DATA2的数据块中. 四.代码: <strong> </strong>data segment dataOne db 'It is a temp string',0ah,0dh,'$' dataTwo db 50 dup(?) msgOne db 0ah,0dh,'source string:','$' msgTwo db
#include <iostream> #include <string> using std::cout; using std::endl; using std::string; int main(void){ string str1="We can insert a string"; string str2="a str into "; //在字符串指定位置前面插入指定字符串 cout <<str1.insert(14,str