Hi,
Running 1.53 and also 3.01
I know there are operators to strip() and strip_tail() to remove characters from the front and end of a uri - what would people recommend to make sure that the uri only ever contains numerical value?
If I wanted to for example strip the - character what would be the best way?
TIA. Stephen.
On 04/19/2010 01:55 PM, dotnetdub wrote:
Hi,
Running 1.53 and also 3.01
I know there are operators to strip() and strip_tail() to remove characters from the front and end of a uri - what would people recommend to make sure that the uri only ever contains numerical value?
If I wanted to for example strip the - character what would be the best way?
See the regular expression transformations.
dotnetdub writes:
<div><br></div><div>If I wanted to for example strip the - character what would be the best way?</div><div><br></div><div>TIA.</div><div>Stephen.</div>
see, for example, textops subst_user('/re/repl/flags').
-- juha
On 19 April 2010 19:01, Juha Heinanen jh@tutpro.com wrote:
dotnetdub writes:
<div><br></div><div>If I wanted to for example strip the - character what would be the best way?</div><div><br></div><div>TIA.</div><div>Stephen.</div>
see, for example, textops subst_user('/re/repl/flags').
-- juha
Thanks Alex - Juha..