Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
610 views
in Technique[技术] by (71.8m points)

.net - Match string not preceded by another with a regular expression

The statement

Regex.Replace("XB", "([^A])B", "$1AB")

produces XAB, as expected. Can someone explain me why

Regex.Replace("XBB", "([^A])B", "$1AB")

does not produce XABAB, but XABB? It's like the regex parser no longer has knownledge of the preceding character when it reaches the second B.

Ultimately, I want to replace all Bs not preceded by a A by AB.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

All B's not preceded by a A by AB.

Find: (?<!A)B
Replace: AB


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...