[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static int[] IndexOfAll(
this string str,
string find,
StringComparison comparisonType
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function IndexOfAll (
str As String,
find As String,
comparisonType As StringComparison
) As Integer()
Dim str As String
Dim find As String
Dim comparisonType As StringComparison
Dim returnValue As Integer()
returnValue = str.IndexOfAll(find,
comparisonType)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static array<int>^ IndexOfAll(
String^ str,
String^ find,
StringComparison comparisonType
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member IndexOfAll :
str : string *
find : string *
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.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, 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.