In JavaScript, how can I get the first and last words from an element's text?
For example:
<div class="content">this is a test</div>// output 'this' 'test'
<p>This is another test</p>// output 'this' 'test'
How can I do that? I am not sure how to use RegExp to match them.
datato a string. From there, it would be safe to run a RegExp pattern and get your answer. – user1385191 Sep 24 '11 at 15:42This is a test.is the last wordtestortest.? What if the element text is你好? Is the last word好? – Raymond Chen Sep 24 '11 at 15:56