Utente:Pracchia-78/AWB/Test

Find: \b(\d+)(?:\s|-)?[ ]*(Y|Z|E|P|T|G|M|k|h|da|d|c|m|µ|n|p|f|a|z|y)?(m|g|s|A|K|mol|cd|Hz|N|Pa|J|W|C|V|F|Ω|S|Wb|T|H|lm|lx|Bq|Gy|Sv|kat|M)(²|³)?\b

Replace with: $1 $2$3$4

Text this regex should modify:

  1. 15 km/h
  2. 15-m
  3. 15 km²
  4. 15cm³

Intended result:

  1. 15 km/h
  2. 15 m
  3. 15 km²
  4. 15 cm³

Regular expression? Y

Case sensitive? Y




Find: \b(\d+)(?:\s| |-)*H(m|g|s|A|K|mol|cd|Hz|N|Pa|J|W|C|V|F|Ω|S|Wb|T|H|lm|lx|Bq|Gy|Sv|kat|M|l)\b

Replace with: $1 h$2

Text this regex should modify:

  1. 15 Hg
  2. 15 Hl
  3. 15 HPa
  4. 15 HW

(and so on)

Intended result:

  1. 15 hg
  2. 15 hl
  3. 15 hPa
  4. 15 hW

(and so on)

Regular expression? Y

Case sensitive? Y

Apply No. of times: 1