I am attempting to identify all instances where the length of a string is more than 1. This is the regex I am using:
string.match(/\B\w+(?=\w)/gi);
I also attempted this approach:
string.match(/^\B\w+(?=\w){2,}$/gi);
Unfortunately, it did not yield the desired results...