You are not logged in.
Hi
To select and replace all the paragraphs starting with "[Translation:]": I am trying to achieve something like:
^.(\bTranslation:)$This shorter code works, but I am unable to code for the whole paragraph:
^.(\bTranslation)Very kind of you to guide!
Thankyou
Last edited by makh (2021-10-03 13:47:02)
OS: Arch &/ Debian
System: LENOVO ThinkPad E14
Desktop: Xfce
Offline
For a simple paragraph it would be this
^.*\bTranslation\b:.*$or if you want to match the square brackets at the beginning of the line use this instead
^\[\bTranslation\b:\].*$Offline
Hi
Its solved it!
Thankyou
OS: Arch &/ Debian
System: LENOVO ThinkPad E14
Desktop: Xfce
Offline