I'm just trying to figure out why I can't figure this out. I might not use it in coding, but I need to hold logical thinking... I think this is why I have problems with Pre-calculus... Thought process. Here's what I just threw together, but even if it functioned perfectly from what's there, it doesn't account for limiting to only two URLs:
function urlChat(%t) {
%output = "http://";
for(%i = 0; %i <= getWordCount(%t); %i++) {
%w = getWord(%t, %i);
if(strStr(%w, ":") > -1)
%output = %output @ " " @ %w @ " http://";
else
%output = %output @ "_" @ %w @ " ";
}
}