def incr14Str(string): """Increase one (+1) in the last number part of string.""" rt = re.search(r'(\d+)([^\d]*$)', string) if rt: pos_left = rt ...
確定! 回上一頁