9

我正在尝试分析字符串的内容。如果单词中混合了标点符号,我想用空格替换它们。

例如,如果将 Johnny.Appleseed!is:a*good&farmer 作为输入输入,那么它应该说有 6 个单词,但我的代码仅将其视为 0 个单词。我不确定如何删除不正确的字符。

仅供参考:我正在使用 python 3,我也无法导入任何库

string = input("type something")
stringss = string.split()

    for c in range(len(stringss)):
        for d in stringss[c]:
            if(stringss[c][d].isalnum != True):
                #something that removes stringss[c][d]
                total+=1
print("words: "+ str(total))
4

7 回答 7

15

基于简单循环的解决方案:

strs = "Johnny.Appleseed!is:a*good&farmer"
lis = []
for c in strs:
    if c.isalnum() or c.isspace():
        lis.append(c)
    else:
        lis.append(' ')

new_strs = "".join(lis)
print new_strs           #print 'Johnny Appleseed is a good farmer'
new_strs.split()         #prints ['Johnny', 'Appleseed', 'is', 'a', 'good', 'farmer']

更好的解决方案:

使用regex

>>> import re
>>> from string import punctuation
>>> strs = "Johnny.Appleseed!is:a*good&farmer"
>>> r = re.compile(r'[{}]'.format(punctuation))
>>> new_strs = r.sub(' ',strs)
>>> len(new_strs.split())
6
#using `re.split`:
>>> strs = "Johnny.Appleseed!is:a*good&farmer"
>>> re.split(r'[^0-9A-Za-z]+',strs)
['Johnny', 'Appleseed', 'is', 'a', 'good', 'farmer']
于 2013-07-06T23:09:05.037 回答
11

这是一种不需要导入任何库的单行解决方案。
它用空格替换非字母数字字符(如标点符号),然后split是字符串。

灵感来自“ Python strings split with multiple separators

>>> s = 'Johnny.Appleseed!is:a*good&farmer'
>>> words = ''.join(c if c.isalnum() else ' ' for c in s).split()
>>> words
['Johnny', 'Appleseed', 'is', 'a', 'good', 'farmer']
>>> len(words)
6
于 2013-07-06T23:21:34.933 回答
3

试试这个:它使用 re 解析 word_list,然后创建一个 word:appearances 字典

import re
word_list = re.findall(r"[\w']+", string)
print {word:word_list.count(word) for word in word_list}
于 2013-12-01T19:14:36.300 回答
3

如何使用集合中的计数器?

import re
from collections import Counter

words = re.findall(r'\w+', string)
print (Counter(words))
于 2015-07-09T20:25:35.900 回答
1
for ltr in ('!', '.', ...) # insert rest of punctuation
     stringss = strings.replace(ltr, ' ')
return len(stringss.split(' '))
于 2013-07-06T23:08:21.313 回答
1

我知道这是一个老问题,但是......这个怎么样?

string = "If Johnny.Appleseed!is:a*good&farmer"

a = ["*",":",".","!",",","&"," "]
new_string = ""

for i in string:
   if i not in a:
      new_string += i
   else:
      new_string = new_string  + " "

print(len(new_string.split(" ")))
于 2014-06-05T01:11:33.133 回答
0
#Write a python script to count words in a given string.
 s=str(input("Enter a string: "))
 words=s.split()
 count=0
  for word in words:
      count+=1

  print(f"total number of words in the string is : {count}")
于 2018-07-26T13:18:05.813 回答