I have a value like this:
\"Foo Bar\" \"Another Value\" something else
What regex will return the
If you're trying to find strings that only have a certain suffix, such as dot syntax, you can try this:
\"([^\"]*?[^\"]*?)\".localized
Where .localized
is the suffix.
Example:
print("this is something I need to return".localized + "so is this".localized + "but this is not")
It will capture "this is something I need to return".localized
and "so is this".localized
but not "but this is not"
.