I'm working on a small project with javascript. I am using charAt method to get the first character in a line from ace editor. here's my code:
function checkFirstChar (lineNo) {
var words = lines[lineNo].split(" ");
var firstChar = words[0].charAt(0);
if (firstChar == "." || firstChar == "#") {
return 0;
}
else return 1;
}
Where lines is an array or strings, which is extracted from the ace editor. Problem is, this works fine when the first character is '#'. But when the first character is '.', it doesn't take it as a dot '.' Instead, it takes it as a "" (empty string). Can anyone help me out here ? Whats wrong with it ?
Edit: This is how I took the array, lines.
for(var i = 0, lines = new Array(numOfLines); i<numOfLines; i++ ){
lines[i] = editor.session.getLine(i);
}
Most confusing part is, when I make an alert from words[0], it shows the word with the dot "."
I tried the code. It works perfectly fine for me. Please check the values that are being inserted in your array. I suppose it should work fine. I implemented the following code: