readline.set_completer_delims()
  • References/Python/Python/Text Processing

readline.set_completer_delims(string) readline.get_completer_delims() Set or get the word delimiters for completion

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

readline.parse_and_bind(string) Execute the init line provided in the string argument. This calls rl_parse_and_bind()

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

regex.match(string[, pos[, endpos]]) If zero or more characters at the beginning of string match this regular

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

vformat(format_string, args, kwargs) This function does the actual work of formatting. It is exposed as a separate function

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

stringprep.in_table_c4(code) Determine whether code is in tableC.4 (Non-character code points).

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

readline.get_completer_delims() Set or get the word delimiters for completion. These determine the start of the word to be considered

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

string.ascii_letters The concatenation of the ascii_lowercase and ascii_uppercase constants described

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

regex.finditer(string[, pos[, endpos]]) Similar to the finditer() function, using the compiled pattern, but also

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

re.compile(pattern, flags=0) Compile a regular expression pattern into a regular expression object, which can be used for matching

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

match.lastindex The integer index of the last matched capturing group, or None if no group was matched at all.

2025-01-10 15:47:30