[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static int[] IndexOfAll(
this string str,
string find,
int startIndex,
StringComparison comparisonType
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function IndexOfAll (
str As String,
find As String,
startIndex As Integer,
comparisonType As StringComparison
) As Integer()
Dim str As String
Dim find As String
Dim startIndex As Integer
Dim comparisonType As StringComparison
Dim returnValue As Integer()
returnValue = str.IndexOfAll(find,
startIndex, comparisonType)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static array<int>^ IndexOfAll(
String^ str,
String^ find,
int startIndex,
StringComparison comparisonType
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member IndexOfAll :
str : string *
find : string *
startIndex : int *
comparisonType : StringComparison -> int[]
No code example is currently available or this language may not be supported.
[Missing <param name="comparisonType"/> documentation for "M:DevCase.Extensions.StringExtensions.StringExtensions.IndexOfAll(System.String,System.String,System.Int32,System.StringComparison)"]
No code example is currently available or this language may not be supported.
Dim str As String = "Q,W,E,R,T,Y"
Dim indices As Integer() = str.IndexOfAll(","c, 0, StringComparison.OrdinalIgnoreCase)
Console.WriteLine(String.Join(", ", indices))
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.