url http://localhost:port/api/text/arabic stemmer algorithm
我创建了一个,但只需要第一个字:
r'text/(?P<text>\w+)/?'
我正在使用Django框架
我需要用白色sapaces选择所有文本“阿拉伯语词干算法”
谢谢
答案 0 :(得分:1)
您可以尝试:
url(r'text/(?P<text>[\w ]+)/?') # allows whitespace
或
url(r'text/(?P<text>.+?)/?') # allows all characters before the next slash