【LABVIEW到C#】3》String的操作之Match Pattern Funtion.vi

來源:互聯網
上載者:User

標籤:

C#實現如下

using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace DEMO{    class Darrenstring    {        public class Matchpattern:Darrenstring        {            private string text;            private string pattern;            private int index;            public bool ismatch;            public Matchpattern(string Text, string Pattern)            {                text = Text;                pattern = Pattern;                Match a = Regex.Match(text,pattern);                index=a.Index;                ismatch = a.Success;            }            public int Index()            {                return index;            }            public string Before()            {                if (ismatch)                {                    return (text.Substring(0, index));                }                else return null;            }            public string After()            {                if (ismatch)                {                    return (text.Substring(index + pattern.Length, text.Length - pattern.Length-index));                }                else return null;            }        }    }}

類寫好後 我們來做個實驗 建立個winform程式 

程式部分代碼如下:

 private void Confirm_Click(object sender, EventArgs e)        {            Darrenstring.Matchpattern A = new Darrenstring.Matchpattern(Source.Text, Terminal.Text);            //Terminal.Text = Convert.ToString(A.Index());            before1.Text = A.Before();            After.Text = A.After();            IsMatched.Checked = A.ismatch;                    }

運行後結果圖如下:

效果不錯功能實現

 

MSDN資料參考

System.String.RegularExpressions命名空間說明         https://msdn.microsoft.com/zh-cn/library/System.Text.RegularExpressions(v=vs.80).aspx

Regex類說明     https://msdn.microsoft.com/zh-cn/library/system.text.regularexpressions.regex(v=vs.80).aspx

【LABVIEW到C#】3》String的操作之Match Pattern Funtion.vi

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.