Parsi Coders

نسخه‌ی کامل: جستجو یک رشته در یک فایل متنی
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
کد:
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;

            }



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