PHP - 字符串的子字符串单词
我需要找到给定字符串的子字符串,但子字符串必须是英语单词。
IE 给定 string = every,那么子字符串将是“ever”、“very”等。
感谢您的帮助。
I need to find substrings of a given string but the substrings must be a word in the English language.
I.E. Given string = every, then substrings will be "ever", "very" and etc.
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要两件事。首先,你必须找到所有可能的子串。然后你将需要一个包含所有英语单词的列表(有很多免费的汇编)。
这是一个可能的实现:
You will need two things. First, you have to find all possible substrings. Then you will need a list with all English words (there are many free compilations).
This is a possible implementation: