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.
tag.IndexOf('>')、わかりましたので、これは整数を返します。
tag.IndexOf('>')
2 番目のアドレスが必要なので、文字記号の後にあるので、'>' がアドレス 8 にある場合、アドレス 9 が必要です。
どうやってやるの?
何か不足していますか?
int address = tag.IndexOf('>') + 1;