3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = "TEST DEHUMIDIFIER, MUNTERS (M11L) / / / / / / / M11L 230V, 50Hz, 0.21Kw"; preg_match_all("/(\b[a-zA-Z-]{3,}\b)+?/", $str, $matches); print_r($matches[0]); $foo = $matches[0]; foreach ($foo as $bar) { print $bar . ': '; print preg_match('/^[a-z0-9]+([a-z0-9-]+[a-z0-9])?$/iD', $bar); print PHP_EOL; } // stripMeasurements $pattern = "!(?<=\A|[, :-=])\d+[- ]{0,3}(\"|barrel|bag|bottle|box|can|coil|cartridge|case|carton|cup|cylinder|degree|drum|dozen|foot|feet|squarefoot|gallon(us)|inch|gram|hole|jar|kilogram|pound|length|litre|milli-litre|meter|metre|milli-letre|milimetre|squaremetre|cubicmetre|metre|roll|numberofrolls|packet|piece|pail|pair|sack|set|sheet|shortton|tin|metricton|ton|thread|tonne|a|bar|bg|bo|bx|b|ca|cm|cl|cq|ct|cu|cy|cm2|c|deg|dr|din|fot|ftk|gll|grm|gm|hz|in|jr|kg|kgm|kgf|kwh|kw|l|lbr|ln|ltr|rpm|mlt|c2|cc3|c3|ma|m2|m3|mt3|mt2|ml|mm|mmt|mtk|mtq|mtr|m|nrl|pa|pin|psi|pkt|pce|pcs|rol|sa|set|st|stn|tn|tne|tu|va|v|x)[s]?(?=\Z|[, :-=])!i"; print preg_replace($pattern, " ", $str) . PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => TEST [1] => DEHUMIDIFIER [2] => MUNTERS ) TEST: 1 DEHUMIDIFIER: 1 MUNTERS: 1 TEST DEHUMIDIFIER, MUNTERS (M11L) / / / / / / / M11L , , 0.21Kw

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
49.52 ms | 401 KiB | 8 Q