Fortran.ReplaceChar Method

Replaces a character in a string.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static string ReplaceChar(
	string original,
	int position,
	char replacement
)

Parameters

original  String
The original string.
position  Int32
The zero-based position of the character to replace.
replacement  Char
The replacement character.

Return Value

String
The string original with the character at position position replaced with replacement.

See Also