string.Template
  • References/Python/Python/Text Processing

class string.Template(template) The constructor takes a single argument which is the template string.

2025-01-10 15:47:30
rlcompleter.Completer.complete()
  • References/Python/Python/Text Processing

Completer.complete(text, state) Return the stateth completion for text. If

2025-01-10 15:47:30
re.error.msg
  • References/Python/Python/Text Processing

msg The unformatted error message.

2025-01-10 15:47:30
re.finditer()
  • References/Python/Python/Text Processing

re.finditer(pattern, string, flags=0) Return an iterator yielding match objects

2025-01-10 15:47:30
readline.add_history()
  • References/Python/Python/Text Processing

readline.add_history(line) Append line to the history buffer, as if it was the last line typed. This calls add_history()

2025-01-10 15:47:30
stringprep.in_table_c12()
  • References/Python/Python/Text Processing

stringprep.in_table_c12(code) Determine whether code is in tableC.1.2 (Non-ASCII space characters).

2025-01-10 15:47:30
readline.get_completion_type()
  • References/Python/Python/Text Processing

readline.get_completion_type() Get the type of completion being attempted. This returns the rl_completion_type

2025-01-10 15:47:30
re.match.start()
  • References/Python/Python/Text Processing

match.start([group]) match.end([group]) Return the indices of the start and end of the substring matched by group;

2025-01-10 15:47:30
re.match.string
  • References/Python/Python/Text Processing

match.string The string passed to match() or search().

2025-01-10 15:47:30
string.Formatter.parse()
  • References/Python/Python/Text Processing

parse(format_string) Loop over the format_string and return an iterable of tuples (literal_text, field_name

2025-01-10 15:47:30