Getting words by words of a string keeping the spacing between each words
up vote
0
down vote
favorite
my_string= 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
Expected output:.
EXPLORE
EXPLORE DATA..
EXPLORE DATA.. ADD
I have tried with re.sub("[^w]", " ", my_string).split()
which gives: ['EXPLORE', 'DATA', 'ADD', 'INTELLIGENCE', 'GET', 'VALUABLE', 'INSIGHTS']
While taking first two string it will be EXPLORE DATA
which does not keep the actual spacing in the my_string
. Expected is EXPLORE DATA..
. How to get the expected output. Like first word, then first two words, then first 3 words..and so on.
python-3.x
add a comment |
up vote
0
down vote
favorite
my_string= 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
Expected output:.
EXPLORE
EXPLORE DATA..
EXPLORE DATA.. ADD
I have tried with re.sub("[^w]", " ", my_string).split()
which gives: ['EXPLORE', 'DATA', 'ADD', 'INTELLIGENCE', 'GET', 'VALUABLE', 'INSIGHTS']
While taking first two string it will be EXPLORE DATA
which does not keep the actual spacing in the my_string
. Expected is EXPLORE DATA..
. How to get the expected output. Like first word, then first two words, then first 3 words..and so on.
python-3.x
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
my_string= 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
Expected output:.
EXPLORE
EXPLORE DATA..
EXPLORE DATA.. ADD
I have tried with re.sub("[^w]", " ", my_string).split()
which gives: ['EXPLORE', 'DATA', 'ADD', 'INTELLIGENCE', 'GET', 'VALUABLE', 'INSIGHTS']
While taking first two string it will be EXPLORE DATA
which does not keep the actual spacing in the my_string
. Expected is EXPLORE DATA..
. How to get the expected output. Like first word, then first two words, then first 3 words..and so on.
python-3.x
my_string= 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
Expected output:.
EXPLORE
EXPLORE DATA..
EXPLORE DATA.. ADD
I have tried with re.sub("[^w]", " ", my_string).split()
which gives: ['EXPLORE', 'DATA', 'ADD', 'INTELLIGENCE', 'GET', 'VALUABLE', 'INSIGHTS']
While taking first two string it will be EXPLORE DATA
which does not keep the actual spacing in the my_string
. Expected is EXPLORE DATA..
. How to get the expected output. Like first word, then first two words, then first 3 words..and so on.
python-3.x
python-3.x
edited Nov 22 at 5:51
asked Nov 22 at 5:46
9113303
30511
30511
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You can do it by using the index of those word list that you have created
import re
my_string = 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
word_list = re.sub("[^w]", " ", my_string).split()
for word in word_list:
end_index = my_string.find(word) + len(word) // get the index at the end of the word
print(my_string[:end_index])
This results in
EXPLORE
EXPLORE DATA
EXPLORE DATA.. ADD
EXPLORE DATA.. ADD INTELLIGENCE
EXPLORE DATA.. ADD INTELLIGENCE..GET
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can do it by using the index of those word list that you have created
import re
my_string = 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
word_list = re.sub("[^w]", " ", my_string).split()
for word in word_list:
end_index = my_string.find(word) + len(word) // get the index at the end of the word
print(my_string[:end_index])
This results in
EXPLORE
EXPLORE DATA
EXPLORE DATA.. ADD
EXPLORE DATA.. ADD INTELLIGENCE
EXPLORE DATA.. ADD INTELLIGENCE..GET
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS
add a comment |
up vote
1
down vote
accepted
You can do it by using the index of those word list that you have created
import re
my_string = 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
word_list = re.sub("[^w]", " ", my_string).split()
for word in word_list:
end_index = my_string.find(word) + len(word) // get the index at the end of the word
print(my_string[:end_index])
This results in
EXPLORE
EXPLORE DATA
EXPLORE DATA.. ADD
EXPLORE DATA.. ADD INTELLIGENCE
EXPLORE DATA.. ADD INTELLIGENCE..GET
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can do it by using the index of those word list that you have created
import re
my_string = 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
word_list = re.sub("[^w]", " ", my_string).split()
for word in word_list:
end_index = my_string.find(word) + len(word) // get the index at the end of the word
print(my_string[:end_index])
This results in
EXPLORE
EXPLORE DATA
EXPLORE DATA.. ADD
EXPLORE DATA.. ADD INTELLIGENCE
EXPLORE DATA.. ADD INTELLIGENCE..GET
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS
You can do it by using the index of those word list that you have created
import re
my_string = 'EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS…'
word_list = re.sub("[^w]", " ", my_string).split()
for word in word_list:
end_index = my_string.find(word) + len(word) // get the index at the end of the word
print(my_string[:end_index])
This results in
EXPLORE
EXPLORE DATA
EXPLORE DATA.. ADD
EXPLORE DATA.. ADD INTELLIGENCE
EXPLORE DATA.. ADD INTELLIGENCE..GET
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE
EXPLORE DATA.. ADD INTELLIGENCE..GET VALUABLE INSIGHTS
answered Nov 22 at 6:03
Andreas
1,510516
1,510516
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424581%2fgetting-words-by-words-of-a-string-keeping-the-spacing-between-each-words%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown