在AutoJS中,要讀取文件的坐標(biāo),可以通過以下步驟實現(xiàn):
files.read()
函數(shù)來讀取文件的內(nèi)容。該函數(shù)接受一個參數(shù),即文件的路徑,返回文件的內(nèi)容。var filePath = "/sdcard/test.txt";
var content = files.read(filePath);
var regex = /(\d+),(\d+)/;
var matches = regex.exec(content);
matches
數(shù)組來獲取匹配到的坐標(biāo)信息。matches[1]
表示x坐標(biāo),matches[2]
表示y坐標(biāo)。var x = matches[1];
var y = matches[2];
完整示例代碼如下:
var filePath = "/sdcard/test.txt";
var content = files.read(filePath);
var regex = /(\d+),(\d+)/;
var matches = regex.exec(content);
var x = matches[1];
var y = matches[2];
console.log("x坐標(biāo):" + x);
console.log("y坐標(biāo):" + y);
這樣就可以讀取文件中的坐標(biāo)信息了。請確保文件的路徑和格式正確,并且文件內(nèi)容符合要求的格式。