Log in

View Full Version : PHP to ASP function


Raven_Writer
12-04-2004, 09:19
In PHP, there's a function called explode, which would replace a given string of character(s), with something else. What I'm wondering is if there's a function like this in ASP.

Stephen Kowski
12-04-2004, 09:44
i believe you are looking for the split() function. I forget how to implement it, but a simple google search can take care of that.

gl

Raven_Writer
12-04-2004, 10:04
i believe you are looking for the split() function. I forget how to implement it, but a simple google search can take care of that.

glThank you. It seems to be what I'm looking for :)