-
|
Ello! I recently made this Regex search pattern: To captured both the name and the lines, spoken and inner-dialouge in this plaintext script: I got it to capture all the text I wanted...except for lines that I had manually edited with linefeed (LF) in them. Thanks! I'm helping this user who made a full translation of the game on here by polishing up the script: Yup! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Solution 1Engine The match Solution 2Engine Check |
Beta Was this translation helpful? Give feedback.
Solution 1
Engine
TXTwill separate file by\r\n,so you needunfinishgroup to connect sentences into paragraph.The match
skipwill endunfinishthen form paragraph. (02_skipmatch<PW>)Solution 2
Engine
BINcan setseparateto extract multi-lines. (Default sep is\r\ntoo)Check
BIN enable Pure Text modeandEncoding applies to BIN.When import text, need to change setting
Paragraph Separatorto any string that will…