0

私の文字列では、2 つ以上のスペースに基づいて文字列を分割するか、文字列をトークン化したいと考えています。

string = "I am  Chaitanya Gadam.      Split   this srting."

私は出力したい -

str[0]= "I am"  
str[1]= "Chaitanya Gadam."  
str[2]= "Split"  
str[3]= "this string."  
4

4 に答える 4