You are viewing limited content. For full access, please sign in.

Question

Question

Text identification match beginning/end of line

asked two days ago

In Quick Fields, is there a way to match on the beginning and/or end of a line?

 

I tried ^ and $, but they don't work, evidently reserved for beginning and end of the entire text. I also tried (\r?\n|^) and (\r?\n|$) but wasn't successful with those either. I tried starting the regex with (?m) but that didn't help.

0 0

Replies

replied two days ago
# Beginning
[\f\n\r]+(.+)

# End
(.+)[\f\n\r]+

 

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.