码迷,mamicode.com
首页 > Windows程序 > 详细

【LABVIEW到C#】4》String的操作之Search and Replace.vi

时间:2015-03-05 19:17:14      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

C#封装如下:

public class SearchAndRepalce : Darrenstring
        {            
            public bool replaced;
            private string stringout;
            public SearchAndRepalce()
            {
            }
            public string searchandreplace(string inputstring, string searchstring, string replacestring, bool replaceall)
            {
                if (replaceall)
                {
                    replaced=true;
                    stringout = inputstring.Replace(searchstring, replacestring);
                    return stringout;
                }
                else
                {
                    Matchpattern A = new Matchpattern(inputstring, searchstring);
                    if (A.ismatch)
                    {
                        stringout = A.Before() + replacestring+A.After();
                        replaced=true;
                        return stringout;
                    }
                    else
                    {
                        replaced = false;
                        return null;                       
                    }                
                }               
            }
        }

上述C#是根据项目常用的方式进行封装的,由于我是做工控软件的,所以是根据自己的实际情况进行封装。

在项目中number of replacement 通常会和0做比较以此来确定,string是否含searchstring。所以在C#的再封装中 直接使用bool。

做个winform程序来验证

技术分享

实现代码

private void Confirm_Click(object sender, EventArgs e)
        {
            Darrenstring.SearchAndRepalce A = new Darrenstring.SearchAndRepalce();
            Textout.Text = A.searchandreplace(Text.Text, Searchstring.Text, Replacestring.Text, Rplaceall.Checked);
        }  

图片如下

技术分享

技术分享

感觉挺好用的,简简单单的语言思维移植。Labview的此VI和这个类库的用法相同。

【LABVIEW到C#】4》String的操作之Search and Replace.vi

标签:

原文地址:http://www.cnblogs.com/lucifer-mengxiaoxie/p/4316482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!