Skip to content

Commit

Permalink
Merge pull request #12 from sunghwan2789/1.2
Browse files Browse the repository at this point in the history
구절 구분 못하는 문제 해결
  • Loading branch information
sunghwan2789 authored Feb 28, 2018
2 parents 0849879 + 73fb1c1 commit a497903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bible2PPT/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ private void btnMake_Click(object sender, EventArgs e)

var books = lstBooks.Tag as List<BibleBook>;
foreach (var t in
Regex.Replace(txtKeyword.Text.Trim(), @"\s+", "").Split()
Regex.Replace(txtKeyword.Text.Trim(), @"\s+", " ").Split()
.Select(BibleQuery.ParseQuery)
.Select(q => Tuple.Create(q, books.First(b => b.ShortTitle == q.BibleId))).ToList())
{
Expand Down

0 comments on commit a497903

Please sign in to comment.