डिक्लेरेशन
func Find(target string, findValue string, startIndex int) int
go
पैरामीटर्स
इनपुट
| नाम | टाइप | विवरण |
|---|---|---|
| Target | String | Target string |
| Find Value | String | The specified string to search for |
| Start Index | Int | Search for a string from the start position, the string position starts at 0 |
वापस
| टाइप | विवरण |
|---|---|
| Int | The first occurrence of the specified string in the target string. The string position starts at 0. |