差し替えをしようと思っています。次の文字列を検討してください。
Please replace something in this sentence.
and replace <b>something </b> in this sentence.
But not here http://www.mysite.com/something/mypage.html
Or here \\myserver\something\myshare\
に置き換えたいのですが、ソースの URL または UNC に表示される可能something
性somethingelse
がsomething
あり、それを置き換えたくありません。また、いくつかの面白い HTML が進行中です。
これは私が使用しているパターンです:
\b[^/\\]Something[^/\\]\b
これはうまくいきますが、最初のsomething
後ろのスペースも取得しています。に置き換えるsomething
とsomethingelse
、次の結果が得られます。
Please replacesomethingelsein this sentence.
and replace <b>somethingelse </b> in this sentence.
But not here http://www.mysite.com/something/mypage.html
Or here \\myserver\something\myshare\
2 番目のインスタンスは機能しますが、スペースを含む最初のインスタンスは機能しません。
周囲のスペースの有無を無視するにはどうすればよいsomething
ですか? ありがとうございました。