문자열 함수 예

Linda Hamilton
Linda Hamilton원래의
2025-01-06 23:59:52388검색

String Functions Examples

#1. L Strip
#2. R Strip
#3. Replace a string in a statement with another string

# L Strip
Str = input("Enter the String:")

ord_space = ord(' ')
ord_tab = ord('\t')

i = 0 
right = 0
while i < len(Str):
    if ord(Str[i]) != ord_space and ord(Str[i]) != ord_tab:
        right = i
        break
    i+=1
Str = Str[right:]
print('LStrip String:',Str,end='#',sep='')


# R Strip

Str = input("Enter the String:")

ord_space = ord(' ')
ord_tab = ord('\t')

i = len(Str)-1
right = 0 

while i > 0:
    if ord(Str[i]) != ord_space and ord(Str[i]) != ord_tab:
        right = i
        break
    else:
        i-=1

Str = Str[:right+1]

print("#", Str, "#", sep='')


# Replace a string

#MSD --> Dhoni
#MSD is Former Indian Captain.  MSD is retired. MSD plays for CSK
sen = 'MSD is Former Indian Captain.  MSD is retired. MSD plays for CSK - MSD'
Key = 'MSD'
New_sen = ''
Key_Len = len(Key)
i=0
while i< len(sen):
       if Key == sen[i:i+Key_Len]:
            print('i',i)
            New_sen = New_sen + 'Dhoni'
            i+=Key_Len
       else:
            New_sen = New_sen + sen[i]
            i+=1
print(New_sen)       

위 내용은 문자열 함수 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.