Class ITextTransformersListExtensions
Represents the text transformers list extensions.
Inherited Members
Namespace: Platform.RegularExpressions.Transformer
Assembly: Platform.RegularExpressions.Transformer.dll
Syntax
public static class ITextTransformersListExtensions
Methods
| Improve this Doc View SourceTransformWithAll(IList<ITextTransformer>, String)
Transforms the with all using the specified transformers.
Declaration
public static IList<string> TransformWithAll(this IList<ITextTransformer> transformers, string source)
Parameters
Type | Name | Description |
---|---|---|
IList<ITextTransformer> | transformers | The transformers.
|
String | source | The source.
|
Returns
Type | Description |
---|---|
IList<String> | A list of string
|
TransformWithAllToFiles(IList<ITextTransformer>, String, String, Boolean)
Transforms the with all to files using the specified transformers.
Declaration
public static void TransformWithAllToFiles(this IList<ITextTransformer> transformers, string sourceText, string targetPath, bool skipFilesWithNoChanges)
Parameters
Type | Name | Description |
---|---|---|
IList<ITextTransformer> | transformers | The transformers.
|
String | sourceText | The source text.
|
String | targetPath | The target path.
|
Boolean | skipFilesWithNoChanges | The skip files with no changes.
|