Parsi Coders
جستجو یک رشته در یک فایل متنی - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Software Development Programming (http://parsicoders.com/forumdisplay.php?fid=37)
+--- انجمن: C# Programming (http://parsicoders.com/forumdisplay.php?fid=55)
+--- موضوع: جستجو یک رشته در یک فایل متنی (/showthread.php?tid=1182)



جستجو یک رشته در یک فایل متنی - Ghoghnus - 10-31-2011

کد:
bool searchtextfile(string fileadd, string regMatch)

        {

            bool find = false;

            StreamReader testTxt = new StreamReader(fileadd);

            string allRead = testTxt.ReadToEnd();

            testTxt.Close();

            if (Regex.IsMatch(allRead, regMatch))

            {

                find = true;



            }

            else

            {

                find = false;

            }



        }



RE: جستجو یک رشته در یک فایل متنی - cgss - 01-10-2013

یک سئوال من اگر بخوام یک رشته 5کاراکتری جستجو کنم چه کنم