Hello everyone,
I have the following replace function:
item.value = item.value.replace(/[.](\s{1,2})?/g, ".").replace(/[.]/g, ". ");
Ok. My problem is and I'm not really sure where to start is that I want to only replace the full stops that have a Alphabetic character preceding it.
Any ideas... I just want a push in the right direction.
Thanks
Smoogan
I have the following replace function:
item.value = item.value.replace(/[.](\s{1,2})?/g, ".").replace(/[.]/g, ". ");
Ok. My problem is and I'm not really sure where to start is that I want to only replace the full stops that have a Alphabetic character preceding it.
Any ideas... I just want a push in the right direction.
Thanks
Smoogan