Dot notation string manipulation

前端 未结 5 1132
伪装坚强ぢ
伪装坚强ぢ 2020-12-07 00:28

Is there a way to manipulate a string in Python using the following ways?

For any string that is stored in dot notation, for example:

s = \"classes.s         


        
相关标签:
5条回答
  • 2020-12-07 01:03

    You can do it very simply with rsplit (str.rsplit([sep[, maxsplit]]) , which will return a list by breaking each element along the given separator. You can also specify how many splits should be performed:

    >>> s = "res.spa.f.sal.786423"
    >>> s.rsplit('.',1)
    ['res.spa.f.sal', '786423']
    

    So the final function that you describe is:

    def dimimak_cool_function(s):
         if '.' not in s: return s
         start, end = s.rsplit('.', 1)
         return start if end.isdigit() else s
    
    >>> dimimak_cool_function("res.spa.f.sal.786423")
    'res.spa.f.sal'
    >>> dimimak_cool_function("res.spa.f.sal")
    'res.spa.f.sal'
    
    0 讨论(0)
  • 2020-12-07 01:26

    you can use split and join together:

    s = "classes.students.grades"
    print '.'.join(s.split('.')[:-1])
    

    You are splitting the string on . - it'll give you a list of strings, after that you are joining the list elements back to string separating them by .

    [:-1] will pick all the elements from the list but the last one

    To check what comes after the last .:

    s.split('.')[-1]
    

    Another way is to use rsplit. It works the same way as split but if you provide maxsplit parameter it'll split the string starting from the end:

    rest, last = s.rsplit('.', 1)
    
    'classes.students'
    'grades'
    

    You can also use re.sub to substitute the part after the last . with an empty string:

    re.sub('\.[^.]+$', '', s)
    

    And the last part of your question to wrap words in [] i would recommend to use format and list comprehension:

    ''.join("[{}]".format(e) for e in s.split('.'))
    

    It'll give you the desired output:

    [classes][students][grades]
    
    0 讨论(0)
  • 2020-12-07 01:26

    if '.' in s, s.rpartition('.') finds last dot in s,
    and returns (before_last_dot, dot, after_last_dot):

    s = "classes.students.grades"
    s.rpartition('.')[0]
    
    0 讨论(0)
  • 2020-12-07 01:27

    If your goal is to get rid of a final component that's just a single digit, start and end with re.sub():

    s = re.sub(r"\.\d$", "", s)
    

    This will do the job, and leave other strings alone. No need to mess with anything else.

    If you do want to know about the general case (separate out the last component, no matter what it is), then use rsplit to split your string once:

    >>> "hel.lo.there".rsplit(".", 1)
    ['hel.lo', 'there']
    

    If there's no dot in the string you'll just get one element in your array, the entire string.

    0 讨论(0)
  • 2020-12-07 01:28

    The best way to do this is using the rsplit method and pass in the maxsplit argument.

    >>> s = "classes.students.grades"
    >>> before, after = s.rsplit('.', maxsplit=1) # rsplit('.', 1) in Python 2.x onwards
    >>> before
    'classes.students'
    >>> after
    'grades'
    

    You can also use the rfind() method with normal slice operation.

    To get everything before last .:

    >>> s = "classes.students.grades"
    >>> last_index = s.rfind('.')
    >>> s[:last_index]
    'classes.students'
    

    Then everything after last .

    >>> s[last_index + 1:]
    'grades'
    
    0 讨论(0)
提交回复
热议问题