Edifice 0 Posted April 22, 2010 Hey Guys. Ran into ar funny problem. I'm parsing some HTML, and I wanted use the " character for stringsplit, to get the path of an image (<img src="c:\locating">). stringsplit($string, ") Ofcourse, the compiler doesn't really like it when I do that, so I wondered if any of you knew whether it was possible, and how? Share this post Link to post Share on other sites
AdamUL 98 Posted April 22, 2010 Use single quotes surrounding the double quote. StringSplit($string, '"') Adam Share this post Link to post Share on other sites
Edifice 0 Posted April 23, 2010 Use single quotes surrounding the double quote. StringSplit($string, '"') Adam Thanks! Share this post Link to post Share on other sites
andygo 1 Posted April 23, 2010 to type it twice should also work:stringsplit($string, """") Share this post Link to post Share on other sites