U
Ulrich Sommer
Hallo,
I would like to isolate a substring from a longer string.
The starting position of the substring is defines by a
letter combination.
Example: email-Address in a Full Name filed
Full_Name
"Paul Lehmann; email
[email protected]"
"Hans Muller; email:[email protected]"
I would like to see in these felds evereything right
of "email:"
In SQL Server, there are Substring- und Charindex
Funktions that can do this.
In this case,
SELECT
SUBSTRING (Full_Name,CHARINDEX('email:',Full_Name),100)
AS Email
From TableName
returns
Email
"email
[email protected]"
"email:Hans.Mü[email protected]"
Can I build something like this also in Access XP? What
are the names of the functions here?
Thanks
I would like to isolate a substring from a longer string.
The starting position of the substring is defines by a
letter combination.
Example: email-Address in a Full Name filed
Full_Name
"Paul Lehmann; email

"Hans Muller; email:[email protected]"
I would like to see in these felds evereything right
of "email:"
In SQL Server, there are Substring- und Charindex
Funktions that can do this.
In this case,
SELECT
SUBSTRING (Full_Name,CHARINDEX('email:',Full_Name),100)
AS Email
From TableName
returns

"email:Hans.Mü[email protected]"
Can I build something like this also in Access XP? What
are the names of the functions here?
Thanks