jsonに座標データを解析するパーサを作成しようとしています。データは単純なx、y形式のテキストファイルです。私は[i]の前にテキストを取得しようとしていますが、これは.split()で可能ですか?javascript forループ - [i]の前にテキストを取得する方法
コード:
function visualize()
{
if(currDoc == null)
{
var location = window.prompt("Please enter the name of the dataset file, and make sure it is in the data directory. Current supported formats txt.");
location = "data/" + location;
jQuery.get(location, function(data) {
data = data.replace(/\s/g, '');
var length = data.length;
var commaCount = 0;
for(var i=0;i<length;i++)
{
if(data[i] == ",")
{
commaCount += 1;
if(commaCount == 2)
{
//get text before [i]
}
}
}
}, "text").fail(function(){ alert("File not found. Did you enter the file name correctly?") });
}
else
{
alert("A dataset is already visualized");
}
}
)を –
それが唯一の最後の文字でない文字列を返します@Teemu –
入力から何を得たいのかは明確ではありません。それぞれのxとyのペアが必要ですか、他のルールに基づいてより長い文字列を作成したいですか? – Ma3x