Search:

Type: Posts; User: help_desk

Search: Search took 0.14 seconds.

  1. Re: Regular expression to find a line beginning with a certain character Using Java

    Hi Norm,

    Thanks alot. I figured out how to do that with the below code :
    char c = (char) ('A'+ i);
  2. Re: Regular expression to find a line beginning with a certain character Using Java

    Like I said, I do know how to split each word in the line and check the first index of the String array.I was just looking for a way to compare each line to a particular regex line that starts with...
  3. Re: Regular expression to find a line beginning with a certain character Using Java

    Hi,
    I do know there is the contains() method that is very close to what I need but that will not specifically check for the first characters in a line. I don't know of any String API that could do...
  4. Re: Regular expression to find a line beginning with a certain character Using Java

    How do you check that the line begins with "**" in java? Any simple example?

    Thanks
  5. Regular expression to find a line beginning with a certain character Using Java

    Hello guys,

    I have a text file that has the following lines:

    the boy is smart
    He is from Australia
    ** Highly important line
    That's all

    Now, I need a regular java expression that would...
Results 1 to 5 of 5