How do i make sure to type into a next line when the string reaches a certain character?
E.g. String = “XXX LOS ANGELOS STREET XXXX MMMMMM SSSSS”
the address field is only 15 characters per line.
how do i break into and type into each line?
[quote=“TyraS, post:1, topic:422176”]
XXX LOS ANGELOS STREET XXXX MMMMMM SSSSS
/(.{1,15})(|$) /gm
im having this error:
Your regular expression does not match the subject string.