#9453
LTT
Participant

Yutaka wrote:
2. Can you please create a sample file, and explain what you expect as a result? You might want to zip your sample file, and send it to [email protected], and please identify yourself as a forum member.

For example, the original text:

1-2-3-4-5-

My goal:

1‰
2‰
3‰
4‰
5‰

If I replace “-” with “x{2030}n” (which I think is a correct regular expression), the result is:

1‰n2‰n3‰n4‰n5‰n

If I use “x2030n”, the result is:

1‰2‰3‰4‰5‰

I achieved my goal by using “x{2030}n” or “x2030n”.
But how to understand the excessive backslash(es)?