在AutoJS中,要讀取文件的坐標,可以通過以下步驟實現:
files.read()
函數來讀取文件的內容。該函數接受一個參數,即文件的路徑,返回文件的內容。var filePath = "/sdcard/test.txt";
var content = files.read(filePath);
var regex = /(\d+),(\d+)/;
var matches = regex.exec(content);
matches
數組來獲取匹配到的坐標信息。matches[1]
表示x坐標,matches[2]
表示y坐標。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坐標:" + x);
console.log("y坐標:" + y);
這樣就可以讀取文件中的坐標信息了。請確保文件的路徑和格式正確,并且文件內容符合要求的格式。