Answers for "format a block of text in sentences splitting on point and uppercase letter js stack"

4

js split string on capital letter second

'ThisIsTheStringToSplit'.split(/(?=[A-Z])/); // positive lookahead to keep the capital letters
Posted by: Guest on January-27-2021

Code answers related to "format a block of text in sentences splitting on point and uppercase letter js stack"

Code answers related to "Javascript"

Browse Popular Code Answers by Language