File tree 1 file changed +11
-11
lines changed
TOOL-Remove-StringDiacritic
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
function Remove-StringDiacritic {
2
2
<#
3
3
. SYNOPSIS
4
- This function will remove the diacritics (accents) characters from a string.
4
+ This function will remove the diacritics (accents) characters from a string.
5
5
6
6
. DESCRIPTION
7
- This function will remove the diacritics (accents) characters from a string.
7
+ This function will remove the diacritics (accents) characters from a string.
8
8
9
9
. PARAMETER String
10
- Specifies the String(s) on which the diacritics need to be removed
10
+ Specifies the String(s) on which the diacritics need to be removed
11
11
12
12
. PARAMETER NormalizationForm
13
- Specifies the normalization form to use
14
- https://msdn.microsoft.com/en-us/library/system.text.normalizationform(v=vs.110).aspx
13
+ Specifies the normalization form to use
14
+ https://msdn.microsoft.com/en-us/library/system.text.normalizationform(v=vs.110).aspx
15
15
16
16
. EXAMPLE
17
- PS C:\> Remove-StringDiacritic "L'été de Raphaël"
17
+ PS C:\> Remove-StringDiacritic "L'été de Raphaël"
18
18
19
- L'ete de Raphael
19
+ L'ete de Raphael
20
20
21
21
. NOTES
22
- Francois-Xavier Cat
23
- @lazywinadmin
24
- lazywinadmin.com
25
- github.com/lazywinadmin
22
+ Francois-Xavier Cat
23
+ @lazywinadmin
24
+ lazywinadmin.com
25
+ github.com/lazywinadmin
26
26
#>
27
27
[CMdletBinding ()]
28
28
PARAM
You can’t perform that action at this time.
0 commit comments