Talk:Word break problem: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "==Conjugations== In my experiments with this, the first thing I missed was a dictionary with conjugations, plurals, past participles, etc. For instance separate would be there...")
 
Line 1: Line 1:
==Conjugations==
==Conjugations==
In my experiments with this, the first thing I missed was a dictionary with conjugations, plurals, past participles, etc. For instance separate would be there but there would be no separate entry for separated. I also didn't know that unixdict.txt has 'b'..'z' as separate words, and no jabberwocky... Otherwise the Phix entry could have been quite practical for throwing a 48,000+ word dictionary at a paragraph, but probably not a whole book-full, of deciphered (and de-spaced) text. [[User:Petelomax|Pete Lomax]] ([[User talk:Petelomax|talk]]) 11:41, 1 July 2017 (UTC)
In my experiments with this, the first thing I missed was a dictionary with conjugations, plurals, past participles, etc. For instance separate would be there but there would be no separate entry for separated. I also didn't know that unixdict.txt has 'b'..'z' as separate words, and no jabberwocky... Otherwise the Phix entry could have been quite practical for throwing a 48,000+ word dictionary at a paragraph, but probably not a whole book-full, of deciphered (and de-spaced) text. [[User:Petelomax|Pete Lomax]] ([[User talk:Petelomax|talk]]) 11:41, 1 July 2017 (UTC)

==What is the task again?==
I don't understand from the task description, what is to be done.

* What is the necessary format of this string? Is it white-space, alphanumeric, and other for example?
* Are words a-zA-Z characters only
* What is to happen to numerics? other characters in the string that are not words?

Maybe the task description needs filling out? --[[User:Paddy3118|Paddy3118]] ([[User talk:Paddy3118|talk]]) 07:34, 18 August 2017 (UTC)

Revision as of 07:35, 18 August 2017

Conjugations

In my experiments with this, the first thing I missed was a dictionary with conjugations, plurals, past participles, etc. For instance separate would be there but there would be no separate entry for separated. I also didn't know that unixdict.txt has 'b'..'z' as separate words, and no jabberwocky... Otherwise the Phix entry could have been quite practical for throwing a 48,000+ word dictionary at a paragraph, but probably not a whole book-full, of deciphered (and de-spaced) text. Pete Lomax (talk) 11:41, 1 July 2017 (UTC)

What is the task again?

I don't understand from the task description, what is to be done.

  • What is the necessary format of this string? Is it white-space, alphanumeric, and other for example?
  • Are words a-zA-Z characters only
  • What is to happen to numerics? other characters in the string that are not words?

Maybe the task description needs filling out? --Paddy3118 (talk) 07:34, 18 August 2017 (UTC)