Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 EditText 输入这个:
“我需要两周后去看牙医。”
我们称该字符串为“值”。
我希望 value.split 做这样的事情,将整个句子分成几组字符串。
如
“我需要”--->需要
“去看牙医”---> 任务
“2周后。” ---> 时间
这可以通过.split实现吗?如果不是,我该如何执行此代码?
split能够拆分成单个单词,因此您的例句将变成 10 个单词:“I”、“need”、“to”等。但听起来您需要一些人工智能参与其中,才能弄清楚的话。这是不可能的,split而且是一个非常困难的问题。
split