Specific string matching (Hex 2E2E)

I have a file that I have to deal with, a beautiful simple function to create.

Read file, find the part of the file with the string of some data in it, create the output of data in expanded format table and save the spreadsheet file (for example csv will do)

This is the problem, the data is in the format:

PS1 #PS0 #, #PS3 #c3... 31, c34 #... 126

(I can remove the # and no probs.) The bit that kills me, is that I need to extend the range of c3 to c31. We'll never find a match pattern '.. 'because'. ' is a special character in match pattern and matching of regular expressions - thank you NOR.)

I can kind to locate using the string split function, but it does not I want very efficient, if someone at - there ideas for a better way around this problem?

See you soon

James

Hi James,

Try this:

Tags: NI Software

Similar Questions

  • Darken a specific string Match (LogFilter)

    I have a string of specific match I need black out for a time determined on a daily basis. We currently have one LogFilter officer set up for that particular log with a match string list that we monitor. There is a single string that I need blackened every morning between 04:00 and 07:45. The only way I think I can do it is if I have LogFilter a second officer and apply only the one corresponding to the string, then I can this particular agent of LogFilter black. Can anyone confirm if it would work? Would I meet problems because we follow the same newspaper on two different officers of LogFilter?

    You can control the same log file with several agents. Each agent will retain its own pointer to the log file of the previous analysis of the new entries in the log file.

  • Search for files which file name contains a specific string

    Hello

    I'm lookng for a way to find all the files in a directory, what part of the file name contains a specific string.

    for example:

    String = Hello

    files;

    -1hello2.txt

    -22he45.txt

    -gehello42353.txt...

    The result should be an index or the full file name that matches. In the example, I found the indexes 0, 2, or 1hello2.txt and gehello42353.txt.

    In fact, I have a list of files with the "recursive list.vi".

    Any suggestions are welcome.

    Thank you for your help

    Yves

    You can use the list of folder - function with * Hello *-model.

    From there on, you get the names of files that include this specific model.

    If already you have the list of files:

    -use the chain of digitization of the chips in a loop for and if token index! = - 1, then you can add this index in array to the list.

    I m sure there are better ways to do it, but nothing that I can get to quickly.

  • How to convert the Ascii string containing hex to hex string info?

    Dear all,

    I am busy doing a control/reading program for pumps of ISCO.

    Right now I'm in trouble with to send orders for PUMPS in HEXADECIMAL. When I use a CONTROL to the STRING in HEX display, everything works fine (when I manually write down the command in the control of the chain).

    Exist it a couple of pieces order: string Destination, length, ordering, Checksum. I'm doing a sup - screw that automatically calculates the checksum (modulo 256) and adds it to the string. Everything is going well: first of all, I shared the ascii bytes command and I calculate the checksum and add as ASCII HEXADECIMAL value to the chain of command. Also a CR (= 0d) is added. Now the whole string must be converted to hex. The string contains the right nummers HEX, but they are in ASCII format. Here was I feel worth it, I don't know how to do it!

    So to summarize:

    I have an ascii string that contains the values HEX (for example 315230303652454D4F544531420D) and it must be converted to a HEX string (for instance 3152 3030 3652 454 4531 420 4F54) for the pump of the ISCO can understand the command.

    The VI is attached.

    Thank you in advance,

    Bio

    Bio,.

    This should do what you want.

  • Windows 7 can search for files containing a specific string that includes punctuation

    I have a documentation for a programming language which is in the form of html on my machine and search for files that contain the string "${1}".

    However if I type that in the search box windows instead seeks any file containing the string '1' in its content or its file name or a folder (which gives me 10240 results!)

    Research I try it is possible with a different syntax (escape the $ and brackets to indicate that they are part of the search maybe string)?

    Thank you

    MOG

    Hi Mog,

    Because the question you posted is related to search for files containing a specific string, it would be better suited in the MSDN forum. Please post your question in the following MSDN forum:

    http://social.msdn.Microsoft.com/forums/en-us/windowsgeneraldevelopmentissues/threads

  • Parses a specific string in ActiveRichTextField using StringPattern

    Hi, I am a newbie in the development of BLB and exploring the ActiveRIchTextFIeld currently. I know that it detects channels such as phone number and e-mail by himself and inserts a menu item in the context Menu for. However, I am trying to make the field to detect a specific string as a postcode to the address or any other string indicating the address. I've read that this can be done using the StringPattern or PatternRepository.However m unable to understand how it can be achieved. Can someone please give me an excerpt of reference for the same thing? Thanks in advance...

    Welcome.

    Ko is always a good place to look for things like BLAH:

    How to-to comparison models in the BlackBerry smartphone to provide a user experience integrated applications
    Article number: DB-00525
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800608/...

  • ActionScript 3 String Match() help

    Hello

    I have a several of the hyperlinks on a Web page and I only need to store a few who have a certain rhythm in a variable/table.

    I discovered that you can do this with the match() function. I loaded the container on the Web page in a chain, so I'm just using the MATCH function to try to find the model. The problem is, I'm not bad with reg expressions.

    The hyperlinks I want to catch are written as follows: < a href = "/somename/sameForAllFilesfile.sz" > link < /a > Some

    I only need to store the content between the href =' and ' >.» The file 'sameForAllFiles' is what is common for all files and what I'm trying to use the EQUIV, but I can't get the right expression. Can someone write a basic example of code that I could use?

    Thank you!

    If you use the 'match' method, so that:

    var string: String = "blablabla\

    Some link blablabla\

    Some Link2.

    Some Link3';

    //

    var directoryTemplate:String = ' / sameForAllFiles / ';

    //

    [var regSource:String = '<><>] + href = "[^" "] +" + directoryTemplate + "[^" "] +" [^<>] * > ';

    var reg: RegExp = new RegExp (regSource, 'g');

    //

    trace (String.match (REG));

    Result:

    ,,

  • Another question about regular expressions with String.matches

    don't match String.matches () method expressions when a substring of the string matches, or must match the whole string? So if I have the string '123ABC', and I ask match "1 or more letters" will be it fail because there are other that the letters in the string, but then spend if I add "1 or more letters AND numbers 1 or more? Thus, in the second case each character in the string is recorded in the research, as opposed to the first. Is that correct, or are there ways to JUST matching a substring in the string instead of all this? I'll do some examples too... but that makes sense?

    It must match the entire string. Use Matcher.find () to match on just a sub-string)

  • normal string to hex string

    Hi all

    This question has probably been asked before, but I can't seem to find a situation that quite matches the issue I am experiencing. I have a table that I flattened as a string of data, reverse order, take the first two elements, reverse the new order and feed the characters in a loop for. I want the string to hexadecimal, thus having FE0C (in hexadecimal) through the loop for, but when I select the execution I see that normal display characters cross instead. When I view my channel, I already have a right-click to display the hex that is correct. How to convert the normal string to a hexadecimal string?

    Thank you

    J

    You can use Type Cast to change into a U16 (since it is supposed to be 2 bytes) or the Unflatten of the chain.

  • Decimal string to string Ascii (hex)

    Hello

    I want to convert a decimal string like this "12345" in the string (hex) Ascii as this "3132333435"

    How can I do?

    concerning

    Schwede

    It is a way to do it.

  • String hexadecimal "Hex Ascii" string!

    I'm having a mental block and wonder if anyone can help!

    I'm a device reading series and return a hexadecimal string. I need to view this hexadecimal string to the operator within a context area (PDA). The Message box will obviously contain normal text with the annex at the bottom HEX code.

    When I run the code for the pop up box shows the message readable for the user, but the returned HEX string appears in the appropriatte of ascii characters (because the pop-up displays a normal string).

    My question is, how to make a hexadecimal string appear in an indicator to display normal, 'same' string as it appears in its Hex display indicator:

    0x0A1C - hex display should appear as 0A1C in the channel display indicator.

    Thanks in advance

    SSK

    See photo.

  • Number of a specific string format

    Colleagues Labview users,

    I'm quite familiar with Labview, but for some reason, I can't understand how to do the following:

    I need to format a number (a number) to a string of the form "mmmmee", where m is a number and 'ee' the exponential. For example:

    0.0128 becomes 1280-5

    1654086 becomes 165403

    0.0000006 becomes 0600-9

    etc.

    I would appreciate any advice.

    Thank you!

    Here is a quick sketch. I'm sure that some of the regex wizards will come back with something more simple.

    He needs some work still. For example, if the value is zero or negative, or if the Exhibitor resulting is more than 2 digits, you must also further handling. I am dealing with negative exponents that are more than 1 digit (i.e. 2 digits, including the sign).

  • TSL color does not match HEX, I entered when changing the color of the object.

    Hello world


    I change the color of an image. When I type in the HSL numbers (which correspond to the HEXAGON), it's a completely strange color.  I know colors can look different on the screens, but these colors don't look like even those I need. What I am doing wrong?

    -Color I wanted to achieve: HEX #9E223F

    -The converter was told to use: HSL 346, 65: 38

    -The color looks pink rather than the shade of plum, I needed

    -I work in RGB mode because that those are the specs given to me to print.

    This is nothing like as I wanted it. What I've done wrong? I don't know how to fix or get a more desired result. I have need to change article 'pink' in a plum color.

    Thanks for the help everyone!

    12019957_10153169488417963_5091240987229105672_n.jpg

    STL is not the same as the HSB system uses Adobe. There is a mathematical correlation, but it is more easy to Hex to RGB conversion is 1:1. Here are the corresponding coordinates of color.adobe.com: Hex #9E223F = R158 G34 B63 = H346 S78 B62

  • Replace after specific string

    Hello people,

    I have the query on 9i below:
    SELECT ERRMESSAGE FROM USER_LOG;
    And he'll be back:
    http://somepath/somepath/somepath/somepath.aspx form visit at:prod - Client:10.10.101.243
    http://someotherpath/someotherpath/someotherpath/someotherpath.aspx form visit at:prod - Client:10.20.11.203
    ...
    ...
    2500 more records
    I want to remove everything after the .aspx to keep only the part of the URL. for example:
    http://somepath/somepath/somepath/somepath.aspx
    http://someotherpath/someotherpath/someotherpath/someotherpath.aspx
    ...
    ...
    Thanks in advance for your help

    Slight modification of the position of Bravid

    with user_log as
    (   select 'http://somepath/somepath/somepath/somepath.aspx form visit at:prod - Client:10.10.101.243' ERRMESSAGE from dual union all
        select 'http://someotherpath/someotherpath/someotherpath/someotherpath.aspx form visit at:prod - Client:10.20.11.203' ERRMESSAGE  from dual
    )
    SELECT
        SUBSTR(errmessage,1,INSTR(errmessage,'.aspx') + length('.aspx') ) trimmed_errmessage
    FROM
        user_log
    /
    
  • looking for a specific string in a comma separated column

    I have a column of table called content that shows the following values.

    Content ID
    = ====
    1 jkl, abc, def, xyz
    2 jkl
    3 jklm, xyz
    4 abc

    I need to write a sql statement to find all records that has 'jkl', the result I want is 1 and 2. Any suggestions?

    Thank you.

    Something like

      with t1 as (
      select 1 id, 'abc, jkl, def, xyz' content from dual
      union select 2, 'jkl' from dual
      union select 3, 'jklm, xyz' from dual
      union select 4, 'abc' from dual)
      select id
        from t1
      where ', '||content||',' like '%, jkl,%';
    

    You can avoid record 3

    Published by: user8252707 on February 27, 2009 22:26
    I forgot ' % s :)

    Published by: user8252707 on February 27, 2009 22:33
    Now, it should work!

Maybe you are looking for