spewn
Programmer
- May 7, 2001
- 1,034
here's the string i have:
$sn='Males, 18| Years Old';
$sx =~ s/|/+/g;
Need to have it as:
$sn='Males, 18+ Years Old';
But my search/replace code isn't working.
Any ideas?
- g
$sn='Males, 18| Years Old';
$sx =~ s/|/+/g;
Need to have it as:
$sn='Males, 18+ Years Old';
But my search/replace code isn't working.
Any ideas?
- g