import re def get_nth_words(string, n): if n < 1: return "" else: return re.compile(r"\w+").findall(string)[n-1:n]
function lastChar(string) { return string.split('').pop(); }
Loading collection data...