function extract_only_words_with_first_letter_lowercase(s: string): RegExpMatchArray | [] {
return s.match(/\b[a-z]\w*/g) || [];
}
const s = "PHP rust JavaScript c C++ Typescript python";
const lowercase: RegExpMatchArray | [] = extract_only_words_with_first_letter_lowercase(s);
console.log(lowercase);
/*
run:
["rust", "c", "python"]
*/