Craft\FormBuilder2TwigExtension::replaceUnderscoreWithSpace PHP Method

replaceUnderscoreWithSpace() public method

public replaceUnderscoreWithSpace ( $string )
    public function replaceUnderscoreWithSpace($string)
    {
        $output = str_replace('_', ' ', $string);
        return $output;
    }