Use of special characters in Search String

What is the use of special charaters like
in the search string in the Find & Replace of ABAP editor ?
I want to search for all strings starting with V which are followed by alphabets like
VA
VB...
If I use V*, it also gives me results like
V/R...
Whether it is possible to specify such a condition?

Hi,
While giving ur search in FIND & REPLACE,
use the match case or match whole word only..
Then u will get search results only where the exact case of that variable is used..
As per my knowledge there is no signification of special characters ,- : ; in the search string..
Hope this helps...
Cheers,
Simha.

Similar Messages

  • How to search special characters in a string

    Hi all,
    I want to search special characters in all string columns and all rows in the table.
    The table has about 5 string columns and about 5.000.000 rows. For each row and column, I have to search entries, which included special characters like ", !, ? or something else (f.ex. "Mama?Mia" or "!!!Hotel out of order!!!"). The problem, the character could stand at each position in the string.
    What's the best and most performance possibility to search such entries?? Is it possibility only by SQL; is there a special function for this?? Or must I use PL/SQL.
    Thanks for helping
    Dana

    HTH
    Laurent Schneider
    OCM DBA
    SQL> select * from z;
    S
    Mama?Mia
    a b c
    123
    SQL> select * from z where translate(s,'~ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz1234567890','~') is not null;
    S
    Mama?Mia
    SQL> select * from z where regexp_like(s, '[^[:alnum:][:space:]]');
    S
    Mama?Mia

  • RegExp for excluding special characters in a string.

    Hi All,
    Im using Flex RegExpValidator. Can anyone suggest me the correct expression to validate this condition?....
    I have tried this expression :----- /^[^///\/</>/?/*&]+$/...But in this it is also negating the alphabets.Also I have tried with opposite condition that in the String we should have alphabets and the expression is:-- ([a-z]|[A-Z]|[0-9]|[ ]|[-]|[_])*..... Please can anyone help me on this.
    Thanks in advanced to all.
    Munira

    sorry but you are posting things back that do not make any sense
    what do you mean with the below comment?
    munira06 wrote:
    Yes you are correct ,but I have tried this with single special character
    say
    Re: RegExp for excluding special characters in a string.
    here is a sample app taken from the live docs
    using ^[a-zA-Z0-9 \-_]*$ as the regex accepts all characters from a-z, A-Z, 0-9 - [space] and_
    run the example tell me what regex you are using and what test strings fail when they should pass or pass when they should fail
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Simple example to demonstrate the RegExpValidator. -->
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Script>
            <![CDATA[
                import mx.events.ValidationResultEvent;
                import mx.validators.*;
                // Write the results to the
                private function handleResult(eventObj:ValidationResultEvent):void {
                    if (eventObj.type == ValidationResultEvent.VALID) {
                        // For valid events, the results Array contains
                        // RegExpValidationResult objects.
                        var xResult:RegExpValidationResult;
                        reResults.text = "";
                        for (var i:uint = 0; i < eventObj.results.length; i++) {
                            xResult = eventObj.results[i];
                            reResults.text=reResults.text + xResult.matchedIndex + " " + xResult.matchedString + "\n";
                    } else {
                        reResults.text = "";
            ]]>
        </fx:Script>
        <fx:Declarations>
            <mx:RegExpValidator id="regExpV"
                    source="{regex_text}" property="text"
                    flags="g" expression="{regex.text}"
                    valid="handleResult(event)"
                    invalid="handleResult(event)"
                    trigger="{myButton}"
                    triggerEvent="click"/>
        </fx:Declarations>
        <s:Panel title="RegExpValidator Example"
                width="75%" height="75%"
                horizontalCenter="0" verticalCenter="0">
            <s:VGroup left="10" right="10" top="10" bottom="10">
                <s:Label width="100%" text="Instructions:"/>
                <s:Label width="100%" text="1. Enter text to search. By default, enter  a string containing the letters ABC in sequence followed by any digit."/>
                <s:Label width="100%" text="2. Enter the regular expression. By default, enter ABC\d."/>
                <s:Label width="100%" text="3. Click the Button control to trigger the validation."/>
                <s:Label width="100%" text="4. The results show the index in the text where the matching pattern begins, and the matching pattern. "/>
                <mx:Form>
                    <mx:FormItem label="Enter text:">
                        <s:TextInput id="regex_text" text="xxxxABC4xxx" width="100%"/>
                    </mx:FormItem>
                    <mx:FormItem label="Enter regular expression:">
                        <s:TextInput id="regex" text="ABC\d" width="100%"/>
                    </mx:FormItem>
                    <mx:FormItem label="Results:">
                        <s:TextInput id="reResults" width="100%"/>
                    </mx:FormItem>
                    <mx:FormItem >
                        <s:Button id="myButton" label="Validate"/>
                    </mx:FormItem>
                </mx:Form>
            </s:VGroup>
        </s:Panel>
    </s:Application>

  • Sample code to identify special characters in a string

    Hi,
    I need to identify special characters in a string.... could anybody send me some code please.......
    Thanks,
    Best regards,
    Karen

    data: str(100) type c.
    data: str_n type string.
    data: str_c type string.
    data: len type i.
    data: ofst type i.
    str = '#ABCD%'.
    len = strlen( str ).
    do.
      if ofst = len.
        exit.
      endif.
      if str+ofst(1) co sy-abcde.
        concatenate str_c str+ofst(1) into str_c.
      else.
        concatenate str_n str+ofst(1) into str_n.
      endif.
      ofst = ofst + 1.
    enddo.
    write:/ str.
    write:/ str_c.
    write:/ 'spacial chracter',20 str_n.
    Function module  <b>SF_SPECIALCHAR_DELETE</b> <b>DX_SEARCH_STRING</b>
    l_address1 = i_adrc-street.
    CHECK NOT L_ADDRESS1 IS INITIAL.
    len = STRLEN( l_address1 ).
    do len times.
    if not l_address1+l(1) ca
    'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 '.
    if i_adrc-street+l(1) CO sy-abcde.
    elseif i_adrc-street+l(1) CO L_NUMCHAR.
    exit.
    endif.
    l = l + 1.
    enddo.
    data : spchar(40) type c value '~!@#$$%^&()?...'etc.
    data :gv_char .
    data:inp(20) type c.
    take the string length .
    len = strlen (i/p).
    do len times
    MOVE FNAME+T(1) TO GV_CHAR.
    IF gv_char CA spchar.
    MOVE fnameT(1) TO inp2T(1).
    ENDIF.
    T = T + 1.
    enddo.
    REPORT ZEX4 .
    PARAMETERS: fname LIKE rlgrap-filename .
    DATA: len TYPE i,
    T TYPE I VALUE 0,
    inp(20) TYPE C,
    inp1(20) type c,
    inp2(20) type c,
    inp3(20) type c.
    DATA :gv_char.
    data : spchar(20) type c value '#$%^&*()_+`~'.
    START-OF-SELECTION.
    CONDENSE fname.
    len = strlen( fname ).
    WRITE:/ len.
    DO len TIMES.
    MOVE FNAME+T(1) TO GV_CHAR.
    IF gv_char ca spchar.
    MOVE fnameT(1) TO inpT(1).
    ENDIF.
    T = T + 1.
    ENDDO.
    CONDENSE INP.
    write:/ 'Special Characters :', inp.
    Rewards if useful..........
    Minal

  • Need help in replacing special characters in a string

    Hi,
    please let me know the best way to replace all the special characters in a string with space.
    other than alphabets and numbers
    with regards.
    sumanth.

    please let me know the best way to replace all the special characters in a string with space.
    other than alphabets and numbers
    >
    Sumanth Nag Kristam wrote:
    > actually i need to replace hexa decimal char 0X1A in a string.... that is 'substitue' as per the chart
    > any pointers....
    >
    > chk the link for the ASCII codes
    > http://www.techonthenet.com/ascii/chart.php
    But in Hexa decimal value there is no special characters?

  • Disable use of special characters in a form

    We are wanting to disable the use of special characters that are not in the font family already. Arial Unicode has an expansive family, where Roboto doesn't. Is there a simple way to do this?

    I think I've already replied for this on the other post.
    Check the link that I've posted in it.
    Thanks
    Denzz

  • Special characters in search criteria

    Hi gurus.
    Can anyone tell me something about usage special characters in search cryteria (e.g. in transaction CN43N field POSID - I'm looking for some WBSs). I have try to find answer, but I'm not able to. I know about characters + and * , but I wonder are there any more. If yes, please tell me what do they mean
    Regards
    Michael

    Hi.
    Maybe my question makes no sense, but I did't know where to look for this information. I'm still looking for an answer, but close my question.
    Regards
    Michal
    Edited by: Michal Pluta on Apr 19, 2010 3:28 PM

  • PDS - XML format, unable to read special characters in a string.

    Hi All,
    I've been using XML files to create my report with Oracle9i's new featue of PDS.
    Now, I'm unable to read a file if it contains '&' or '<' in the string. In fact, the xml file itself not able to crate a xml page in the browser, if these special characters are present.
    Is there any way to solve this problem ?
    I can't tell the users to remove &, < from the description data. Is there any way to workaround for this ?
    Thanks in advance,
    Satya.

    Hi Rohit and Rajesh
    Thanks for your reply.
    In fact, my problem is like this:
    I'll get data in .txt file and save that as a .xml file in the network before calling Oracle report ,which gets data from the .xml.
    The contents are like this:
    <Comapy name> Ford Motors UK & Europe</Company name>
    <Department> HR & Pensions</Depatrment>
    <Salary>Grad4 < 25000 </Salary>
    As per XML entity character representation, I need to replace '&' with '&amp;' and '<' with '<lt;'
    I'm wondering is there any other way to solve this problem as it is difficult to replace '<' and '>' generically.
    Honestly, I couldn't understand what Mr. Rajesh was trying to tell.
    'for & use & ( with semicolon at the end)'
    'for < use <'
    'for > use >'
    Can you shed some light on this ?
    Many thanks
    Satya.

  • Replace all special characters in a String with underscore

    I have a String which contains some special characters even(!,$,@,*....).
    I need to replace all the special characters with _ in my String. I do have an idea of using String.replace() and analogous forms, but I would be thankful if anyone can suggest me of a better and an efficient way.
    regards,
    fun_one

    Kaj,
    Thx for your earnest reply. I did have a peep into the API on this method. But the regular expression that I need to use here was beyond my understanding. It did specify some regex that I put to use (something like myString("\D","_"), assuming that I need to replace all non-digit characters ), but it really did not help me getting the result.
    Would you spare some code for me reg. the usage of regular expressions in such a scenario?
    cheers,
    fun_one

  • Check special characters in a string

    Hi all
    I am using oracle 10g.......
    Need to know what should be the query to check whether a special character exists or not in a column value....used the following query like.....
    select count(*) into emp_no_count_special_char
    from dual
    where REGEXP_LIKE(insert_data_rec.emp_no , '[#!$^&*%./\|]$' )
    or REGEXP_LIKE(insert_data_rec.emp_no , '^[#!$^&*%./\|]' );
    This works fine in case a string starts or ends with a special character ,what if a string of special characters lies in between numeric digits.
    e.g: '100#$%7'
    Please help find a query that checks for the existence of sp. characters irrespective of their position in the column!!!
    Thanks
    Dave
    Edited by: Dave on Jun 6, 2012 5:17 AM
    Edited by: Dave on Jun 6, 2012 5:18 AM

    Hi Dave,
    example below:
    -- Check that at least one special character exists in the string
    SELECT COUNT (*)
      INTO emp_no_count_special_char
      FROM DUAL
    WHERE REGEXP_LIKE (insert_data_rec.emp_no, '[#!$^&*%./\|]');
    -- Check that no special characters exist in the string
    SELECT COUNT (*)
      INTO emp_no_count_special_char
      FROM DUAL
    WHERE NOT REGEXP_LIKE (insert_data_rec.emp_no, '[#!$^&*%./\|]');
    {code}
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How is it possible to use Index Seek for LIKE %search-string% case?

    Hello,
    I have the following SP:
    CREATE PROCEDURE dbo.USP_SAMPLE_PROCEDURE(@Beginning nvarchar(15))
    AS
    SELECT * FROM HumanResources.Employee
    WHERE NationalIDNumber LIKE @Beginning + N'%';
    GO
    If I run the sp first time with param: N'94', then the following plan is generated and added to the cache:
    SQL Server "sniffs" the input value (94) when compiling the query. So for this param using Index Seek for AK_Employee_NationalIDNumber index will be the best option. On the other hand, the query plan should be generic enough to be able to handle
    any values specified in the @Beginning param.
    If I call the sp with @Beginning =N'%94':
    EXEC dbo.USP_SAMPLE_PROCEDURE N'%94'
    I see the same execution plan as above. The question is how is it possible to reuse this execution plan in this case? To be more precise, how
    Index Seek can be used in case LIKE %search-string% case. I expected that
    ONLY Index Scan operation can be used here.
    Alexey

    The key is that the index seek operator includes both seek (greater than and less than) and a predicate (LIKE).  With the leading wildcard, the seek is effectively returning all rows just like a scan and the filter returns only rows matching
    the LIKE expression.
    Do you want to say that in case of leading wildcard, expressions Expr1007 and Expr1008 (see image below) calculated such a way that
    Seek Predicates retrieve all rows from the index. And only
    Predicate does the real job by taking only rows matching the Like expression? If this is the case, then it explains how
    Index Seek can be used to resolve such queries: LIKE N'%94'.
    However, it leads me to another question: Since
    Index Seek in
    this particular case scans
    all the rows, what is the difference between
    Index Seek and Index Scan?
    According to
    MSDN:
    The Index Seek operator uses the seeking ability of indexes to retrieve rows from a nonclustered index.
    The storage engine uses the index to process
    only those rows that satisfy the SEEK:() predicate. It optionally may include a WHERE:() predicate, which the storage engine will evaluate against all rows that satisfy the SEEK:() predicate (it does not use the indexes to do this).
    The Index Scan operator retrieves
    all rows from the nonclustered index specified in the Argument column. If an optional WHERE:() predicate appears in the Argument column, only those rows that satisfy the predicate are returned.
    It seems like Index Scan is a special case of Index Seek,
    which means that when we see Index Seek in the execution plan, it does NOT mean that storage engine does NOT scan all rows. Right?
    Alexey

  • Special Characters in search terms and in data

    I'm having a hard time making a decision about what types of special characters I should support in my Contains search.
    I know that some of my data has dashes in it like '1034-AMFM' but if a user puts that in the search term it will be interpretted as a special character by OracleText correct?
    What I have resorted to at the moment is stripping all special characters out of the users search terms but this severely limits the capabilities of Oracle Text and what I'm stuck with is a very basic search tool.
    Is there a way to find a happy medium here?

    You need to use a backslash, not a forward slash. The following demonstrates the behavior under different circumstances, such as specifying the hyphen as a printjoin or skipjoin or whitespace, which is the default, with and without escaping:
    SCOTT@10gXE> CREATE TABLE test_tab (test_col  VARCHAR2 (30))
      2  /
    Table created.
    SCOTT@10gXE> INSERT ALL
      2  INTO test_tab VALUES ('1034-AMFM')
      3  INTO test_tab VALUES ('1034 AMFM')
      4  INTO test_tab VALUES ('1034AMFM')
      5  INTO test_tab VALUES ('95.1-FM')
      6  SELECT * FROM DUAL
      7  /
    4 rows created.
    SCOTT@10gXE> -- without specifying hyphen as printjoin or skipjoin or whitespace
    SCOTT@10gXE> -- or continuation or punctuation or whatever:
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034AMFM
    95.1
    AMFM
    FM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034AMFM
    SCOTT@10gXE> -- with hyphen as printjoin:
    SCOTT@10gXE> DROP INDEX test_idx
      2  /
    Index dropped.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('test_lex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.SET_ATTRIBUTE ('test_lex', 'PRINTJOINS', '-')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('LEXER test_lex')
      4  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034-AMFM
    1034AMFM
    95.1-FM
    AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034AMFM
    SCOTT@10gXE> -- with hyphen as skipjoin:
    SCOTT@10gXE> DROP INDEX test_idx
      2  /
    Index dropped.
    SCOTT@10gXE> EXEC CTX_DDL.DROP_PREFERENCE ('test_lex')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('test_lex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.SET_ATTRIBUTE ('test_lex', 'SKIPJOINS', '-')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('LEXER test_lex')
      4  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034AMFM
    95.1FM
    AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    TEST_COL
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034AMFM
    SCOTT@10gXE> -- with hyphen as whitespace:
    SCOTT@10gXE> DROP INDEX test_idx
      2  /
    Index dropped.
    SCOTT@10gXE> EXEC CTX_DDL.DROP_PREFERENCE ('test_lex')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('test_lex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.SET_ATTRIBUTE ('test_lex', 'WHITESPACE', ' -')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX test_idx ON test_tab (test_col)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('LEXER test_lex')
      4  /
    Index created.
    SCOTT@10gXE> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    1034
    1034AMFM
    95.1
    AMFM
    FM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034-AMFM') > 0
      2  /
    no rows selected
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034\-AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034{-}AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '{1034-AMFM}') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034 AMFM') > 0
      2  /
    TEST_COL
    1034-AMFM
    1034 AMFM
    SCOTT@10gXE> SELECT * FROM test_tab WHERE CONTAINS (test_col, '1034AMFM') > 0
      2  /
    TEST_COL
    1034AMFM
    SCOTT@10gXE>

  • How to replace string containing special characters by another string

    Hi all,
    I have to Search for a pattern and replace it by a substitute pattern [Eg: Replace methodOrig (a,b) with  SessTime = getSessionParameter(time);  methodNew(a,b,SessTime) ] in files.
    i tried this using replace(),but it din't work since string1 contains special characters.
    can anyone help me asap.
    thanks in advance.

    Double-post: http://forum.java.sun.com/thread.jspa?threadID=599211&tstart=0

  • Check whether there is any Special Characters in a String ?

    Hi All,
    I am having a very large String. I like to know how to check whether there is any special characters present in a string
    Thanks,
    J.Kathir

    I am having a very large String. I like to
    I like to know how to check whether there is any
    special characters present in a stringAll characters are special in a way. You shouldn't just single a few out because they don't look "normal" to you. Maybe they have golden hearts?

  • How can I find special characters in a string

    Hi,
    I have a small task where I have to find special characters in a given string, Can anyone suggest.......................

    What is your definition of a "special character", could you be a bit more specific?
    Do you simply want to find the position of a specific character in the string?
    Can it occur more than once and you want to find all occurences?
    What should happen if the special character does not exist?
    For programming purposes, all 256 possible 8 bit characters (x00-xFF) can be treated the same. Non-printing characters can be entered in \-codes or hex display if needed.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Packaging material given to vendor

    Hi .. We have a business case where our client is supplying packaging material (pallets) to suppliers and they pack their material in those packaging and supply to our client. Expenses incurred for such packaging are expensed off but my client wants

  • IMovie and Photo Booth

    I recorded a video using my macbook pro (late 2013) using Photo Booth and I then imported it to iPhoto, I am trying to edit it using iMovie (also on my macbook) I can't edit the footage and it just doesn't pop up in the bar where you select which vid

  • SORT table of type ANY

    Hi,     I've a internal table defined: DATA: <lt_result>  TYPE ANY TABLE. A table name is passed and its structure is assigned to it:   CALL FUNCTION 'TREX_BUILD_COMP_DESCR'     EXPORTING       i_tabname    = lv_tabname     IMPORTING       e_comp_des

  • Location of DEC drivers

    Hi I urgently need the latest 8.1.6 JDBC OCI drivers for DEC 4.0F All I can find on technet are drivers for Solaris. Any idea where I can find them? Cheers, Alan

  • Getting language localization

    I need to determine what language Photoshop is localized to at runtime. Tried using GetADMLanguageCode() from ADMHostSuite6 but that does not return reliable results. I've seen it return "en_US" for a German version of Photoshop. Is there another API