Splitting text at certain characters OR after a certain number of characters?

Viewed 32

I have some basic regex to split text based on some simple characters

/(\.|"|0-9|!|\?|,|:|;|¡|¿|჻|·|…|؟|،|॥|।|«|\(|\)|\{|»|<|>|⸗|⸚|֊|᛫|᠂|᠃|᠅|⁏|።|፣|、|。|‥|「|」|『|』|〝|〟|“|”|,|—)/

But I would like to also split the text if a certain block of text goes on long enough without any of these characters. Is this possible with regex?

0 Answers
Related