Skip to main content

iHello

I need to insert a character (example ^) after every 100 characters in a multi line text field. What regular expression can I use to achieve that?

Thanks

Hi,

This should work... the Pattern is (.{100}) and the Replacement text is $1^ where ^ is the text you want to insert.

172327_pastedImage_0.png

Jan


Reply