Browse Source

Tabulate

pull/3/head
Jure Šorn 6 years ago
parent
commit
4f8e0f0653
1 changed files with 0 additions and 3 deletions
  1. 3
      README.md

3
README.md

@ -192,11 +192,8 @@ re.split(<regex>, text, maxsplit=0) # Use brackets in regex to keep the matches
``` ```
* **'Search' and 'match' functions return a 'Match' object. Use '.group()' method on it to get the whole match, or '.group(1)' to get the part in first bracket.** * **'Search' and 'match' functions return a 'Match' object. Use '.group()' method on it to get the whole match, or '.group(1)' to get the part in first bracket.**
* **Parameter 'flags=re.IGNORECASE' can be used with all functions. Parameter 'flags=re.DOTALL' makes dot also accept newline.** * **Parameter 'flags=re.IGNORECASE' can be used with all functions. Parameter 'flags=re.DOTALL' makes dot also accept newline.**
* **Use '\\\\1' or r'\1' for backreference.** * **Use '\\\\1' or r'\1' for backreference.**
* **Use ? to make operators non-greedy.** * **Use ? to make operators non-greedy.**

Loading…
Cancel
Save