User:TomTheHand/Unit tests for AWB regexes/Power
Appearance
This section contains regular expressions for formatting units of power.
Similar to the expressions for nautical miles, this task requires several rules. The first strips commas and spaces from large numbers of horsepower. The second converts abbreviated uses of horsepower. The third converts unabbreviated noun phrases. The fourth converts unabbreviated adjectival phrases. They should not be set up as sub-rules, because then they would only run when we've stripped commas or spaces; we may be dealing with small numbers, so there were no commas to strip, or the article may have simply been written without commas.
Remove commas
[edit]Description | |
---|---|
Remove commas from quantities of horsepower. | |
Find | |
\b(?<=\d+)(\s| |,)(?=\d{3,3}(?:(?:\s| |,)\d{3,3})*(\.\d*)?(?:\s| |-)?(?:(?:shaft|indicated|brake)(?:\s| |-)?)?(?:horse(?:\s| |-)?power|(?:s|i|b)?hp)\b) | |
Replace with | |
(leave this field blank!) | |
Regular expression? | Case sensitive? |
Y | N |
Text this regex should modify: | Intended result: |
|
|
Convert abbreviated phrases
[edit]Description | |
---|---|
Use Convert template on abbreviated horsepower figures | |
Find | |
\b(?<![,\.$])(\d+(?:\.\d+)?)(?:\s| |-)?(b|i|s)?hp\b(\s?\(?\d{1,3}(?:,?\d{3,3})*(\.\d*)?(?:\s| )?(?:watts?|W|kilowatts?|kW|megawatts?|MW)\)?)? | |
Replace with | |
{{convert|$1|$2hp|abbr=on}} | |
Regular expression? | Case sensitive? |
Y | N |
Text this regex should modify: | Intended result: |
|
|
Text this regex should not modify: | |
|
Convert unabbreviated noun phrases
[edit]Description | |
---|---|
Use Convert template on unabbreviated horsepower figures | |
Find | |
\b(?<![,\.$])(\d+(?:\.\d+)?)(?:\s| )?(b|i|s)?(?:rake|ndicated|haft)?(?:\s| )?horse(?:\s| |-)?powers?\b(\s?\(?\d{1,3}(?:,?\d{3,3})*(\.\d*)?(?:\s| )?(?:watts?|W|kilowatts?|kW|megawatts?|MW)\)?)? | |
Replace with | |
{{convert|$1|$2hp}}$3 | |
Regular expression? | Case sensitive? |
Y | N |
Text this regex should modify: | Intended result: |
|
|
Convert unabbreviated adjectival phrases
[edit]Description | |
---|---|
Use Convert template on unabbreviated adjectival horsepower figures | |
Find | |
\b(?<![,\.$])(\d+(?:\.\d+)?)-(b|i|s)?(?:rake|ndicated|haft)?(?:\s| |-)?horse(?:\s| |-)?powers?\b(\s?\(?\d{1,3}(?:,?\d{3,3})*(\.\d*)?(?:\s| )?(?:watts?|W|kilowatts?|kW|megawatts?|MW)\)?)? | |
Replace with | |
{{convert|$1|$2hp|adj=on}} | |
Regular expression? | Case sensitive? |
Y | N |
Text this regex should modify: | Intended result: |
|
|