0

I need to search for a digit and € Symbol.

Examples:
1€
2€


But I also find \d€ in these examples:
1,20€
1.30€
1,99€

So I need a string with only searches for two characters containing a digit and a € symbol without any digits before that.

I came up with, but it does not work
(?!\d)\d€


EDIT
It has to work with the InDesign GREP search and JavaScript

Kai S
  • 3
  • 4

1 Answers1

0

This, should do the job. Searches from the start of string for a decimal, followed by euro sign, in its unicode format.

 ^\d\u20AC