我有一個問題,我很困擾。我有一段代碼作爲字符串閱讀,但我想刪除它的特定部分。Javascript - 從字符串中刪除特定範圍的子串
/**
* This file is autoupdated by build.xml in order to set revision id.
*
* @author Damian Minkov
*/
public class RevisionID
{
/**
* The revision ID.
*/
public static final String REVISION_ID="0";
}
例如,上面的代碼片段。我想替換所有的評論(/ **和* /之間的所有內容)。
我該怎麼做呢?
現在,這是我正在嘗試的嘗試;
var sposC = temp.indexOf('/*');
console.log(sposC);
var eposC = temp.indexOf('*/');
console.log(eposC);
var temp1 = temp.replace(eposC + sposC, '1');
它雖然不工作,所以可能有人請幫助我。
使用正則表達式刪除註釋。 請參閱這裏:http://stackoverflow.com/questions/5989315/regex-for-match-replacing-javascript-comments-both-multiline-and-inline – sjkm