-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings.js
51 lines (51 loc) · 1.81 KB
/
strings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* Common strings functions
*
* Genmod: Genealogy Viewer
* Copyright (C) 2005 Genmod Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package Genmod
* @subpackage Display
* @version $Id: strings.js 29 2022-07-17 13:18:20Z Boudewijn $
*/
function trim(str) {
return str.replace(/(^\s*)|(\s*$)/g,'');
}
function strclean(s) {
s=s.replace(/[\u00E0-\u00E5]/g,'a');
s=s.replace(/[\u00E6-\u00E6]/g,'ae');
s=s.replace(/[\u00E7]/g,'c');
s=s.replace(/[\u00E8-\u00EB]/g,'e');
s=s.replace(/[\u00EC-\u00EF]/g,'i');
s=s.replace(/[\u00F1]/g,'n');
s=s.replace(/[\u00F2-\u00F6]/g,'o');
s=s.replace(/[\u0153]/g,'oe');
s=s.replace(/[\u00F9-\u00FC]/g,'u');
s=s.replace(/[\u00FD\u00FF]/g,'y');
s=s.replace(/[\u00C0-\u00C5]/g,'A');
s=s.replace(/[\u00C6]/g,'AE');
s=s.replace(/[\u00C7]/g,'C');
s=s.replace(/[\u00C8-\u00CB]/g,'E');
s=s.replace(/[\u00CC-\u00CF]/g,'I');
s=s.replace(/[\u00D1]/g,'N');
s=s.replace(/[\u00D2-\u00D6]/g,'O');
s=s.replace(/[\u0152]/g,'OE');
s=s.replace(/[\u00D9-\u00DC]/g,'U');
s=s.replace(/[\u00DD]/g,'Y');
s=s.replace(/[\s\']/g,'-');
return s;
}