User:ArrowHead294/Regex snippets: Difference between revisions
Jump to navigation
Jump to search
ArrowHead294 (talk | contribs) mNo edit summary |
ArrowHead294 (talk | contribs) mNo edit summary |
||
Line 22: | Line 22: | ||
| <code><nowiki>$1&nbsp;$2</nowiki></code> | | <code><nowiki>$1&nbsp;$2</nowiki></code> | ||
| Make sure ''x''L ''y''s notation for MOS scales are non-wrapped | | Make sure ''x''L ''y''s notation for MOS scales are non-wrapped | ||
|- | |||
| <code><nowiki>(?<=(?:colspan|rowspan|id|style)="?.*?"?)\s*((?:\||!){1,3})\s*</nowiki></code> | |||
| <code> $1 </code> | |||
| Space out inline cell separators* | |||
|- | |- | ||
| <code><nowiki><math>,*\s*\\frac(\d)(\d),*\s*<\/math></nowiki></code> | | <code><nowiki><math>,*\s*\\frac(\d)(\d),*\s*<\/math></nowiki></code> |
Revision as of 17:15, 21 January 2025
These are some regular expressions I use for formatting purposes:
Pattern | Replace by | Purpose |
---|---|---|
^(?:\+|-|\x{2212})?(?:(?:\d{1,3}?(?:\,\d{3})*|\d+)\.?\d*|\d*\.?\d+)(?:[Ee][+-]?\d+)?$
|
N/A | Match a number |
(=+)\s*(.*?[^\s=]*)\s*(=+)(?=\n) or (\=+)\s*(.*?[^\s\=])\s*(\=+)(?=\n)
|
$1 $2 $3
|
Space out equals signs for section headers* |
(?<=\n)(\||!)[^\S\r\n]*\|?[^\S\r\n]*(?!-|\}|\+)
|
$1
|
Space out pipe characters and header separators in tables (one cell per line) and replace ! | and | | with ! and | , respectively
|
(\d+[Ll])\s*(\d+[Ss])
|
$1 $2
|
Make sure xL ys notation for MOS scales are non-wrapped |
(?<=(?:colspan|rowspan|id|style)="?.*?"?)\s*((?:\||!){1,3})\s*
|
$1
|
Space out inline cell separators* |
<math>,*\s*\\frac(\d)(\d),*\s*<\/math>
|
{{frac|$1|$2}} or{{sfrac|$1|$2}}
|
Standalone fractions with single-digit numerators and denominators can be done using {{frac}} or {{sfrac}} and don't need to be TeXified
|
* Requires support for variable-width lookaheads and lookbehinds