String Concatenation & Removing Space
- From: "Sparky Arbuckle" <twa@xxxxxxxxxxxxxx>
- Date: 1 Sep 2005 14:09:00 -0700
I am able to build a string for a product revision and was curious
about removing the space. The only way that I have successfully built
the string was to use:
a = integer
strRevision = string
ds.Tables("DataTable").Rows(i)("RevisionString") += strRevision & a &
","
so if product A had 4 revisions, it would look like:
A 1,A 2,A 3,A 4,
I would like this to look like:
A1,A2,A3,A4,etc...
How would I go about doing this? Would I have to create a function that
will Replace the space with ""?
.
- Follow-Ups:
- Re: String Concatenation & Removing Space
- From: Clamps
- Re: String Concatenation & Removing Space
- From: Ben
- Re: String Concatenation & Removing Space
- Prev by Date: Re: Datagrids vs. Table Controls
- Next by Date: Re: Performance issues with ASP.NET web application - Slow response
- Previous by thread: Problem with running a DTS Package from an ASP.NET page
- Next by thread: Re: String Concatenation & Removing Space
- Index(es):
Relevant Pages
|