コード例 #1
0
ファイル: QuranData.cs プロジェクト: rmajeed/QP
        protected override void UpdateSajdaAndRuku(IChapter chapterData, int ayahId, ref string ayahText)
        {
            //check sajda
            if ((ayahText.Length - ayahText.Replace("۩", "").Length) > 0)
            {
                ayahText = ayahText.Replace("۩", "");
                chapterData.AddSajda(ayahId);
            }

            //Raku check
            if ((ayahText.Length - ayahText.Replace("۞", "").Length) > 0)
            {
                ayahText = ayahText.Replace("۞", "");
                chapterData.AddRuku(ayahId);
            }
        }