|
Just a reminder that you can't directly change the characters in a String. So be careful of thinking you can extract the middle of a string and replace it with something else... takes a few more steps in Java. Nick Tom Heiber-Cobb <heibercobb@berbee.com>@midrange.com on 06/13/2000 01:02:24 PM Please respond to JAVA400-L@midrange.com Sent by: owner-java400-l@midrange.com To: JAVA400-L@midrange.com cc: Subject: Re: Array Help Michael, Is this something that might work? ---- String str46chars = "This is a string that is forty six characters."; String str5to9; str5to9 = str46chars.substring(4,10); ---- The first parameter is where you want to start the substring from (zero based indexing) and the second parameter is the ending position + 1. From the api docs on this form of String.substring(): "Returns a new string that is a substring of this string. The substring begins at the specified beginIndex and extends to the character at index endIndex - 1" Best of luck, Tom H-C At 10:14 AM 06/13/2000 -0400, you wrote: >Hi Folks, > >Wondering if some one can help me with some java array processing. I have a >string field 46 characters long that I would like to load to an array and >then extract specific positions of the array like positions 5 to 9. Is there >a better way to do this? Like maybe using a "substring" function on the >string field? > >THANKS IN ADVANCE > >Michael P. Gibbons +--- | This is the JAVA/400 Mailing List! | To submit a new message, send your mail to JAVA400-L@midrange.com. | To subscribe to this list send email to JAVA400-L-SUB@midrange.com. | To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com. | Questions should be directed to the list owner: joe@zappie.net +--- +--- | This is the JAVA/400 Mailing List! | To submit a new message, send your mail to JAVA400-L@midrange.com. | To subscribe to this list send email to JAVA400-L-SUB@midrange.com. | To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com. | Questions should be directed to the list owner: joe@zappie.net +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.