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.
私の文字列では、2 つ以上のスペースに基づいて文字列を分割するか、文字列をトークン化したいと考えています。
元
string = "I am Chaitanya Gadam. Split this srting."
私は出力したい -
str[0]= "I am" str[1]= "Chaitanya Gadam." str[2]= "Split" str[3]= "this string."