Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のコードを持っています:
CGFloat eyeBallColorComponents[4] = //some stuff that changes
CGFloat eyeBallColorComponents[4] =等号の右側に何があっても、先頭にある式と一致させたいだけです。XCode正規表現の検索と置換を使用しています。誰かが私がこれを行う方法を知っていますか?
CGFloat eyeBallColorComponents[4] =
XCode
CGFloat eyeBallColorComponents\[4\] =.*
.*行末までのすべての文字に一致します。は\エスケープ文字です。
.*
\