babiker 0 Newbie Poster 16 Years Ago i have the following: sudaneseonline.com/cgi-bin/posting/posting"sometext... I want to get the string up to the: " char, after the 'g' and before the 's'. Note- the string has no spaces. Thanks in advance. php 0 0 Share PoA 12 Posting Whiz in Training 16 Years Ago Try explode('"', 'sudaneseonline.com/cgi-bin/posting/posting"sometex'); You'll get the string up to double quotes ". 0 0 Share Last Seen 1 Hour Ago pritaeas 2,194 ¯\_(ツ)_/¯ Moderator Featured Poster 16 Years Ago Actually, you'll get an array with both parts. 0 0 Share Share Facebook Twitter LinkedIn Reply to this topic Be a part of the DaniWeb community We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge. Sign Up — It's Free!
PoA 12 Posting Whiz in Training 16 Years Ago Try explode('"', 'sudaneseonline.com/cgi-bin/posting/posting"sometex'); You'll get the string up to double quotes ". 0 0 Share
Last Seen 1 Hour Ago pritaeas 2,194 ¯\_(ツ)_/¯ Moderator Featured Poster 16 Years Ago Actually, you'll get an array with both parts. 0 0 Share