<?php $name = 'this has lots of spaces'; $name = preg_replace('/ +/', '_', $name); print $name . PHP_EOL; $name = 'this has lots of spaces'; $name = preg_replace('/\s+/', '_', $name); print $name . PHP_EOL; $name = 'this has one tab and lots of tabs'; $name = preg_replace('/ +/', '_', $name); print $name . PHP_EOL; $name = 'this has one tab and lots of tabs'; $name = preg_replace('/\s+/', '_', $name); print $name . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.