I am reading info from a text file and displaying it on a web page. The original brief was to put a line break after each full stop in the text.
Using:-
How can I make it ignore the regex if there is a number before and after the full stop (ie 1.4 million)?
Keith
Using:-
Code:
$ad_res[2] =~ s/\./.<br>/g;
Keith