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
re.regex.groupindex
  • References/Python/Python/Text Processing

regex.groupindex A dictionary mapping any symbolic group names defined by (?P<id>) to group numbers. The

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

regex.subn(repl, string, count=0) Identical to the subn() function, using the compiled pattern.

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

match.group([group1, ...]) Returns one or more subgroups of the match. If there is a single argument, the result is a single

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

get_value(key, args, kwargs) Retrieve a given field value. The key argument will be either an integer or a string.

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

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

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

re.search(pattern, string, flags=0) Scan through string looking for the first location where the regular expression

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
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.set_startup_hook()
  • References/Python/Python/Text Processing

readline.set_startup_hook([function]) Set or remove the function invoked by the rl_startup_hook callback of the

2025-01-10 15:47:30