2012-05-21 18 views

Antwort

5

Verwendung str_replace mit php:

$string=str_replace("_"," ",$string); 
2

in SQL

replace('Hi_i_am_working_on_javascript_comment_box', '_', ' ') 
12

Verwenden Sie str_replace() für exa mple. So (see proof here):

$input = 'Hi_i_am_working_on_javascript_comment_box'; 

$output = str_replace('_', ' ', $input); 
Verwandte Themen