in reply to Remove substring
Which removes what you want, but also returns it, and not the remaining string. Instead, try using substr as a lvalue:substr($string,0,2,"");
substr($string,0,2)="";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Remove substring
by cees (Curate) on Jun 26, 2005 at 15:59 UTC |