in reply to Re: Upper case first letter of each _ delimited word
in thread Upper case first letter of each _ delimited word
You need to specify the third argument to split and handle meta characters more carefully...print ucwords("hello_world_", "_"); print ucwords("hello*world", "*");
|
|---|