How can I access WWW.GOOGLE.COM within this String.
I can use the substring method to chop off javascript:linkToExternalSite(' but how can I remove the subsequest string.
So that
javascript:linkToExternalSite('WWW.GOOGLE.COM','D','SDFSDX2131D','R','','X','D','DFA','SAFD')
becomes
WWW.GOOGLE.COM
This works
string = string.substring(31, string.length());
string = string.substring(0, string.indexOf("'"));