Zitat von
fes:
@florian bernd: funktionert, aber die hochkommas sind noch am anfang und am ende des strings, wie bekomm ich die weg?
Delphi-Quellcode:
x := Copy('blablabla''dfdf''', Pos('''', 'blablabla''dfdf''') +1, length('blablabla''dfdf'''));
x := Copy(x, 1, length(x) -1);
So.