路路发智能交易研发中心

 找回密码
 立即注册
查看: 1936|回复: 0

MT4智能交易编程教程-StringReplace函数

[复制链接]

管理员

MT4软件工程师

Rank: 9Rank: 9Rank: 9

积分
6521
帖子
2771
主题
2761
QQ
发表于 2014-3-27 09:24:20 | 显示全部楼层 |阅读模式
MT4智能交易编程教程-StringReplace函数
  1. int  StringReplace(
  2.    string&         str,              // the string in which substrings will be replaced
  3.    const string    find,             // the searched substring
  4.    const string    replacement       // the substring that will be inserted to the found positions
  5.    );
复制代码

示例:
  1. string text="The quick brown fox jumped over the lazy dog.";
  2.   int replaced=StringReplace(text,"quick","slow");
  3.   replaced+=StringReplace(text,"brown","black");
  4.   replaced+=StringReplace(text,"fox","bear");
  5.   Print("Replaced: ", replaced,". Result=",text);
  6.   
  7. //  Result
  8. //  Replaced: 3. Result=The slow black bear jumped over the lazy dog.
  9. //
复制代码




外汇智能交易,成就财富梦想!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则


MT4编程培训|EA定制开发|QQ在线咨询|路路发智能交易研发中心

GMT+8, 2024-12-22 15:53 , Processed in 0.151501 second(s), 26 queries .

© 2009-2022 520EA.com EA668.com

快速回复 返回顶部 返回列表