Ask a Question related to PHP Development, Design and Development.
-
Joe Harman #1
Strip Numbers
Hey could someone help me out here....
I need to strip numbers from a passed variable
ex. 3899007
all the numbers will have 990 (so that is the 4th, 5th & sixth
numbers... from the right...) I want to keep everything to the left of
the two 9s... is there an easy way to do that????
Joe Harman
[url]http://www.HarmanMedia.com[/url]
This `telephone' has too many shortcomings to be seriously considered as
a means of communication. The device is inherently of no value to us. -
Western Union internal memo, 1876
Joe Harman Guest
-
Does MX7 strip SQL comments?
We had a single CF MX 6 server, and recently commissioned a second CF MX 7 server. Both of these query the same SQL Server 2000 database. We are... -
strip out html
is there a function in asp to strip out html characters ? adam -
HELP strip slashes ???
Everyone, I am doing an admin site for a person and their small site. I need to allow them to put in paragraphs of information. I am allowing... -
THX Strip Numbers
Hey Thanks you guys... I appreciate your help! Cheers Joe Harman http://www.HarmanMedia.com This `telephone' has too many shortcomings to... -
[PHP] Strip Numbers
You could use two substr()s or an ereg_replace() $result = substr($str, 0, 2) . substr($str, 5); or $result = ereg_replace("()990()", "\\1\\2",...



Reply With Quote

