если надо
str = "javascript.ru/forum";
regexp = /(\.)(?:r)(u)/;
newstr = str.match(regexp);
alert(newstr[1]+newstr[2]);
однако r незапомнилось между 1 и 2
str = "javascript.ru/forum";
regexp = /(\.)(r)(u)/;
newstr = str.match(regexp);
alert(newstr[1]+newstr[2]);