TecTao Posted July 27, 2010 Share Posted July 27, 2010 I have written a credit card processing app. We are using eProcessingnetwork.com. The approval is returned and displayed as one string with information separated by a parenthesis " and a comma , . Here's an example of the string that is returned. Authorization Response: "YAUTH NUM 975-887","Converted","","48","20100726232505-041085-48-6","RecurID=27" Is there a way to separate the individual items such as: YAUTH NUM 975-887 Converted 48 20100726232505-041085-48-6 RecurID=27 Thanks in advance for any help. mike Link to comment https://forums.phpfreaks.com/topic/208980-seperating-out-comma-delimited-string-information/ Share on other sites More sharing options...
Pikachu2000 Posted July 27, 2010 Share Posted July 27, 2010 explode() it to an array. Link to comment https://forums.phpfreaks.com/topic/208980-seperating-out-comma-delimited-string-information/#findComment-1091561 Share on other sites More sharing options...
TecTao Posted July 27, 2010 Author Share Posted July 27, 2010 Thanks, that did it. Link to comment https://forums.phpfreaks.com/topic/208980-seperating-out-comma-delimited-string-information/#findComment-1091563 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.