Em có đoạn code như sau:
private: System::Void btnStart_Click(System::Object^ sender, System::EventArgs^ e)
{
int index =0;
String^ kod("CIRC");
String^ temp=richTextBox1->Text;
richTextBox1->Text = "";
richTextBox1->Text = temp;
while (index < richTextBox1->Text->LastIndexOf(kod))
{
richTextBox1->Find(kod, index, richTextBox1->TextLength, RichTextBoxFinds::None);
index = richTextBox1->Text->IndexOf(kod, index) +1;
}
}
Đoạn này sẽ tìm kiếm. Nếu em để vòng while chạy thì nó sẽ tìm kiếm từ đầu đên cuối. Nếu em k dùng while và k cho index +1 thì nó tìm từ đầu tiên. Nhưng em muốn cả từ cuối cùng. Mọi người giúp em với!