Hello all,
I’m new to the community and Komodo in general.
I’m having hard time figuring out how to select (and copy into the clipboard) some strings (from multiple lines), which are already highlighted as a result from using the Find function (with RegEx).
The Find function itself is giving me the results as entire lines, whereas I want just the specific strings.
Just to make it clear here is an example:
My code is:
<string name="signin_btn">text 1</string>
<string name="signin_empty_email">text 2</string>
<string name="signin_empty_password">Some other text</string>
<string name="signin_empty_pin">Lots more text</string>
<string name="signin_email_in_wrong_format">Other text, including %s placeholders.</string>
I need to copy to the clipboard just:
text 1
text 2
Some other text
Lots more text
Other text, including %s placeholders.
The RegEx I used to find the text I need is:
(?<=\">)(.*?)(?=\</)
Any ideas how to achieve that, as it seems my intelligence is betraying me?
Thanks!
Alex