Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
7 Antworten
89710 Ansichten

Hi Friends,

I have to split a character from string.

For Example,If Name is like Sai Sathi Bawan,I have to split a first character from these strings as SSB and have to join these characters.How can we achieve this?Please help me in this friends.Thanks in advance

 

 

Avatar
Verwerfen
Beste Antwort

In python you can limit your string by using the VARIABLE[:NUMBER] format.

First character of a string

my_string[:1]

First five characters of a string

my_string[:5]

Last seven characters of a string

my_string[:-7]

So what you need is highlighted in bold

my_name = "Sai sathi bawan"
my_initals = ''.join([s[:1] for s in my_name.split(' ')])
print(my_initals)

Output: Ssb

To force Upper Case...

my_name = "Sai sathi bawan"
my_initals = ''.join([s[:1].upper() for s in my_name.split(' ')])
print(my_initals)

Output: SSB

Avatar
Verwerfen

updated response

Autor

Thank you so much Stephen Mack for your response.Its mean a lot to me

Sure no problem. Have a good day.

Usefull Example Stephen Mack...

Autor

One more help.Mack i want to swap characters 6361 result as 6163 How it is possible??

Beste Antwort

more on...python substring

http://net-informations.com/python/basics/substring.htm


Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Nov. 15
7377
2
Mai 22
33916
0
März 19
4042
0
Jan. 19
5095
4
Feb. 24
12308