Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
[SOLVED] Replace en-dash e2 80 93 in a string
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Regex conversion escapes
by
AlexTP
[
Today
at 08:19:24 pm]
Vector graphics floodfill...
by
zamtmn
[
Today
at 08:07:55 pm]
binding DOM elements in D...
by
nomorelogic
[
Today
at 07:04:18 pm]
Lazarus Release 2.2.2
by
folkeu08
[
Today
at 07:01:24 pm]
installation warning
by
systems
[
Today
at 06:59:05 pm]
sqlite + spellfix
by
Espectr0
[
Today
at 06:23:33 pm]
HTML to text
by
pcurtis
[
Today
at 06:12:33 pm]
How do I add a Pascal com...
by
rvk
[
Today
at 05:40:11 pm]
Using FV's TListBox, Memo...
by
Mathias
[
Today
at 05:30:06 pm]
How do I access the full ...
by
rvk
[
Today
at 05:21:57 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Replace en-dash e2 80 93 in a string (Read 4072 times)
pcurtis
Hero Member
Posts: 939
[SOLVED] Replace en-dash e2 80 93 in a string
«
on:
November 27, 2021, 05:46:54 pm »
How do I replace the en-dash sequence in a string with a simple -?
«
Last Edit: November 28, 2021, 07:23:26 am by pcurtis
»
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
Bart
Hero Member
Posts: 4689
Re: Replace en-dash e2 80 93 in a string
«
Reply #1 on:
November 27, 2021, 05:57:30 pm »
StringReplaceUtf8?
Bart
Logged
pcurtis
Hero Member
Posts: 939
Re: Replace en-dash e2 80 93 in a string
«
Reply #2 on:
November 27, 2021, 06:54:52 pm »
Code: Pascal
[Select]
[+]
[-]
sTemp3
:
=
#226
+
#128
+
#147
;
sTemp
:
=
UTF8StringReplace
(
sTemp
,
sTemp3
,
'*'
,
[
]
)
;
Only half works. It removes, but doesn't replace.
«
Last Edit: November 27, 2021, 07:28:25 pm by pcurtis
»
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
jamie
Hero Member
Posts: 4583
Re: Replace en-dash e2 80 93 in a string
«
Reply #3 on:
November 27, 2021, 08:04:03 pm »
Code: Pascal
[Select]
[+]
[-]
Var
S
:
string
=
#
$e2
+
#
$80
+
#
$93
;
SS
:
String
;
begin
SS
:
=
'Test Line'
+
S
;
Caption
:
=
Utf8StringReplace
(
SS
,
S
,
'-'
,
[
rfReplaceAll
,
rfIgnoreCase
]
)
;
end
;
Logged
The only true wisdom is knowing you know nothing
pcurtis
Hero Member
Posts: 939
Re: [SOLVED] Replace en-dash e2 80 93 in a string
«
Reply #4 on:
November 28, 2021, 07:24:24 am »
Thanks
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
[SOLVED] Replace en-dash e2 80 93 in a string
TinyPortal
© 2005-2018