I want to find first character for example "A" if string have multiple A's i want only first one
Example : "bcAdeAnoA" i want only first "a" after bc
Dim test = "bcAdeAnoA"
Dim regex = New Regex("A", RegexOptions.IgnoreCase)
`then my code , replacing or do anything i want`
sample = regex.Replace(sample, "#")
Note: Regex is not necessary just giving a example