Need To Break Up A String By Character Count
say i have a string that is "hello this is my string and i like it very
much" and i want to insert a newline at every 20th character, how could i go
about doing this?
say i have a string that is "hello this is my string and i like it very
much" and i want to insert a newline at every 20th character, how could i go
about doing this?
I tried the strlen() func but to no avail. I am looping through a record set, if the length of a fields string is above a certain character count, say 50, I want to do one think, less than 50 do another?
View Replies View RelatedI'm creating a form and I have a text box that can't be over 90 characters. I've been trying to accomplish two things but I'm afraid it's just out of my reach, technically.
1. I would like to setup some validation that checks to make sure that the text box isn't over 90 characters when the form is submitted.
2. If possible I would like to do one of the following things. Have a live character count that increases in real-time for every character that is entered. I've seen this before but I don't know if it's feasible in my case. If that's not possible then I would like to have a 'check count' button that displays the current character count (including spaces) in the text box....
I have a string I have to break up in several strings. THe string looks like this:
39-Fagleder,38-Eier,42-Avdelingsleder,37-Etelleranna
The Syntax is NUMBER-TEXT, I wan't to break up the string like this:
39 Fagleder
38 Eier
42 Avdelingsleder
37 Etelleranna
I have tried to use For Next. Is it better if the Syntax is: NUMBER,TEXT,
i have an application that will take user input from a text box and write it
to an access database. i need to make sure that if they ever enter a single
line of text that it has at least 1 space for every 40 characters.
so before i write the info to the database i have to make sure there is no
lines of text that are longer than 40 characters without a space, and if
there are insert a space at the 41st character. is that as hard as it
sounds?
can someone please tell me how to add the " character to a string
i've already tried:
<%
dim string
string = "something"
string = string & """
%>
string should equal something" but doesn't work ?
What is the best way to check each character within a string?
For doing something like encryption, where you check character 1 and replace
it with a different character.. then check character 2 and replace it with a
different character.... etc.... until completing the string?
Is there something wrong with this statement?
SELECT COUNT(applod.CAT) AS CATSR FROM applod WHERE applod.CAT LIKE '%SR%'
This colum has various values such as 1, 2, SR all I want is the number of records that have the value SR in them. Also are you able to make calulations to recordsets, for example
producta = 20
productb = 30
productc =40
((Sum (producta) + sum (productb) + sum (productc)) / (Sum (productc)))
to give me a percentage?
I have an input text area on a form the max field size in the database is 255 i need to split the string at the 250 caracter?
View Replies View Relatedi have a browse button on a web form that the user can upload images via ftp. the user clicks on the browse button to browse a file on his computer and the text field displays the path - "mycomputerdesktopmyimage.jpg".
i need to get the name of the image and insert the name into my database. so i need to be able to search the string ("mycomputerdesktopmyimage.jpg") and insert all the characters after the last "" which will give me the image name. ive tried just writing out the string in asp (jscript), but it gives me "mycomputerdesktopmyimage.jpg" without all the backslashes.
how do i get those backslashes back into the string? my second question is how do i search for the characters after the last backslash? i know i can use a substring on this, but how can i use it for the last backslash?
I have a page that will display a list of locations from an SQL DB. Users need to be able to sort and/or search these locations by industry
Each location has a 4 character desgnation, the 3rd character of which indicates industry. How do I query the DB in an ASP page to recognize ONLY the third character in the string?
Is it possible to search a string for a upper case character? Here is what I am trying to do:
I have the following string:
Quote: str = "ProjectSectionPlanning"
I'm trying to break this string into:
Quote: str = "Project Section Planning"
I'm passing a unique identifier from page1 to page2 to page3 querried from MS SQL Server. When I pass the value, it puts the value in the curly brackets. (Page1 is for display and Page2 is for edit and Page3 is update edit)
When I go to Page3, it gives me an error saying "Syntax error converting from a character string to uniqueidentifier" {7171B9BD-4599-43D9-9521-3DA583A1BB1A} This is the value and the error page says "id=%7B7171B9BD-4599-43D9-9521-3DA583A1BB1A%7D" It seems tp put "%7B" and "%7D" for "{" and "}". Has anyone seen this?
I'm also passing numbers and text and they don't seem to have this problem, just the unique key.
I'm using Msxml2.ServerXMLHTTP.3.0 to fetch a HTML page on a remote
server. The fetched page is then parsed and the information of interest
is extracted and send to the client browser.
However, the remote server does not specify any character coding in its
headers. If using ResponseText property in ServerXMLHTTP, some
international characters are not decoded correctly. This is due to
ResponseText assuming UTF-8 coding if no character set is specified.
My solution is to use the ResponseBody property which returns the web
page as an array of unsigned bytes. I then convert the data to a string
using the ADODB.Stream method as described here:
http://www.motobit.com/tips/detpg_binarytostring/
The string is then parsed and the required information is pulled out.
This solution works just fine but I wonder if there is some more
efficient (without the need for a byte to string converion) way to
solve the problem.
How to use break in asp.
View Replies View Related1. I have a form that insterts data in a database
2. I show this information in a pop-up page
3. When the user enter too much content it makes all the
pop-up too widther and it breaks the design.
I want determinate a specific number of caracters and then
do a line break.
I guess I need something like this:
replace(sql.field,char(10),'<br>')
in the way I show my content
like this:
<%=rs.fields("nombre").value%>
How can I do it?
I have one text field in MSSQL that holds the entire text article, and I would like a stored procedure or a function to break the article into pages based on the character limit per page. However, I don't want it to break into the middle of a word.
I can then use NEXT/PREVIOUS to navigate the pages.
Any ideas?
We've built a page that allows users to enter items that will ultimately
become a list. One particular user enters them into the textarea on the
page and for some reason always puts a hard return into the textarea before
she submits. This goes into SQL as a line break and it's screwing up how
the page renders.
How do I find this via code so that I can replace it? I've tried looking
for chr(13) + chr(10) and vbCr and vbCrLf and replacing them with "" but it
doesn't seem to work. Am I missing something?
if x=1 then response.write("A Man walks into a bar. Ow!")
the following ASP VBscript returns the following text:
"A man walks into a bar. Ow!" (minus the " marks)
How do I make it return the text:
"A Man walks into a bar.
Ow!"
(notice the line break)
I have a for loop inside the loop I am populating a schedule table...I need to place a page break after each table is created that way When one prints each schedule table it will be on one page.
View Replies View RelatedI've been trying to add some lines breaks in a ASP email. I've tried with CHR(10) and with vbCrLf. Every test I get the emails without the line breaks.
This is how my code is:
body = "Name: " & Request.Form("name") & vbCrLf & _
"Email: " & Request.Form("email") & Chr(10) & _
"Manufacturer: " & Request.Form("mnf") & Chr(10) & _
"Category: " & Request.Form("cat") & Chr(10) & _
"Product Description: " & Request.Form("msg")
I have a cdosys email form but all the text is showing on one line in my email. It should have line spaces between each field. It looks like this
Name: Piet Surname: Pompies
etc
Should be:
Name : Piet
Surname : Pompies
Code:
Body = Body & "First Name:" & myfname & vbcrlf
Body = Body & "Last Name: "& mysurname & vbcrlf
Body = Body & "Comments:" & vbcrlf
Body = Body & myComments
heres my code to display the textarea in my email. but its ouputting
1<br />2<br />3
instead of
1
2
3
strBody = strBody & "<td><textarea name='other' cols='50' rows='8' class='textarea2'>" & Replace(Request.Form("other"), VbCrLf, "<br />") & "</textarea></td>"
I am trying to loop through my database to display a picture. Where I hit a snag is this. I only want three pictures then break to a new row and three more, etc. Any ideas?
View Replies View RelatedSeem to have a problem with a form posting data to an ASP page, and the variables not capturing line breaks.
I have one form which contains a TextArea field (multiline) which is posted to an ASP page on submission. The ASP page grabs the values of the fields using 'Request.Forms' and stores them in variables.
When i go to send an email using JMail based on the form data (type of email is HTML by the way), the email does not identify line breaks for the data from the TextArea field. Now i know that because the email type is HTML, line breaks need to be set as Code:
<br>
not the type that is set by the forms - whatever that may be. Any suggestions ppl? And yes, it has to be of HTML type.
I'm trying to merge two separate RTF files (created in Word) into one Word document. I'd like to put a "next page" section break between each document so that headers and footers can differ between sections. I've got the documents merging, but I can't seem to figure out how to insert the section break. Can anyone help?
View Replies View RelatedI would like to have a textarea and have a user input multiple part numbers and return the results. I have gotten it to work if there is a space in between part numbers but if there is a line break it will not work. Anyone have a clue how to split on a line break.
Array = split(request("part"), ch(13) )
doesnt work, just returns first input.
I want my asp report to to be printed with page breaks. How do I do that ?
View Replies View RelatedHow do i force a line break in a block of text that i want to store in variable?
View Replies View RelatedI am using a SQl query to get information by company departments for a Dept Mgr. How can I display each dept on a seperate page. ie page 1 is dept 1, link to page 2 ect
View Replies View RelatedAm using ASP to email the contents of a form to myself and the customer. However, I've had an email from a customer saying that all the text in the email they received did not have any line breaks and all the lines ran into each other. I thought using the code "Chr(13)" would act as a line-break but it doesnt seem to. Code:
View Replies View Relatedi am having with a form field on my classified ads site, so here goes,I have a form field where users can enter a description of there offer for there ad which is like so:
code
--------------------------------------------------
<textarea name="description" cols="55" rows="8" class=select onKeyUp="lenght_update();"></textarea>
--------------------------------------------------
I have say 100 records. I am displaying 10 records per page with 4 columns each per row. And i am able to force page break after 10 records on all pages. Noe one column contains dynamic content. So if the dynamic content is more the page is filled with data.
If the dynamic content is less, the page is not filled completely. So is there a way to check number of lines per page and then fill in the remaining page with another record. In brief displaying records based on page height and then force a page break.