extract a string from a string

Hello

Wanted to still know a thing in obiee 11g
If I need to do something like this

a String-> [email protected]
and I need to take the abc's of him.
So how do.

I thought to use SUBSTRING (long expr FOR startPos)
as stratPos is 1, then the length is 1 @-1
but then is there an instr function in obiee?

Thank you

Try this:

LEFT (tablename.columnname, LOCATE('@', tablename.columnname)-1)

Tags: Business Intelligence

Similar Questions

  • Extract the string from the string

    Hello guys,.

    I have a small question. I would like to extract a string to another string. Imagine the following string:

    param1 = value1 param2 = value2, param3 = value3, param4 = value4

    I would like to be able to extract value2 and value3 to this string. I know that the design of the db is not perfect and should be like this. but it is historical and I have to use this way. Any suggestion?

    Thank you

    to retrieve param2

    Select

    substr (s

    , instr (s, '=', 1, 2) + 1

    , instr (s, ',', 1, 2) - instr (s, '=', 1, 2) - 1

    ) r

    from (select "param1 = value1 param2 = value2, param3 = value3, param4 = value4's double)

    or

    Select regexp_substr (your_string, "[^,] +' 1, 4") from your_table

    for example

    Select regexp_substr ("param1 = value1 param2 = value2, param3 = value3, param4 = value4 ',' [^,] +' 1, 4") param2 double

    PARAM2

    'value2 '.

    Post edited by: chris227
    Corrected solution substr (sorry was before the first coffee ;-))

  • I'm trying to extract the strings and load them into a text-helpplease file

    I'm trying to extract the strings and load them into a file text without space between them - see below

    p_csa = ISCC M4 DP

    where p_csa is a tring to load into a text file



    Code:

    SELECT SUBSTR (p_csa, 0, 0) INTO v_telco FROM DUAL;
    SELECT SUBSTR (p_csa, 1, 4) INTO v_comp FROM DUAL;
    SELECT SUBSTR (p_csa, 5.3) INTO v_csa_prefix FROM DUAL;
    SELECT SUBSTR (p_csa, 8, 4) INTO v_csa_type FROM DUAL;

    fileidinvoice: = UTL_FILE. FOPEN (c_data_location, filenameinvoice, 'W');
    fileidlog: = UTL_FILE. FOPEN (c_data_location, filenamelog, 'W');

    UTL_FILE. PUT_LINE)
    fileidinvoice, v_telco | » '|| v_comp | "|" | v_csa_prefix: "| v_csa_type);


    -the content of the file-

    ISCC M4 DP

    =====================
    I want to remove the space between the chain above for the content of the file should look like this:

    -the content of the file-

    GCSIM4DP

    Hello

    976253 wrote:
    I'm trying to extract the strings and load them into a file text without space between them - see below

    p_csa = ISCC M4 DP

    where p_csa is a tring to load into a text file

    Code:

    SELECT SUBSTR (p_csa, 0, 0) INTO v_telco FROM DUAL;

    Is it always NULL?

    SELECT SUBSTR (p_csa, 1, 4) INTO v_comp FROM DUAL;

    You don't need the double table much in PL/SQL. You can simply say

    v_comp := SUBSTR (p_csa, 1, 4);
    

    Almost all integrated single-row functions work in PL/SQL. (NVL2 is the only one I know who does not work in PL/SQL).

    SELECT SUBSTR (p_csa, 5.3) INTO v_csa_prefix FROM DUAL;
    SELECT SUBSTR (p_csa, 8, 4) INTO v_csa_type FROM DUAL;

    fileidinvoice: = UTL_FILE. FOPEN (c_data_location, filenameinvoice, 'W');
    fileidlog: = UTL_FILE. FOPEN (c_data_location, filenamelog, 'W');

    UTL_FILE. PUT_LINE)
    fileidinvoice, v_telco | » '|| v_comp | "|" | v_csa_prefix: "| v_csa_type);

    What are you trying to do here? For example, what you're trying to put between c_comp and v_csa_prefix?

    -the content of the file-

    ISCC M4 DP

    =====================
    I want to remove the space between the chain above for the content of the file should look like this:

    -the content of the file-

    GCSIM4DP

    If you don't want space, then only concatenate all the spaces in the string before you write it and REPLACE allows you to delete all the spaces that have been copied from p_csa. For example:

    UTL_FILE.PUT_LINE ( fileidinvoice
                , REPLACE ( v_telco || v_comp
                                        || v_csa_prefix
                              || v_csa_type
                       , ' '
                       )
                );
    

    I guess you need the v_comp of separate variables, the v_csa_prefix and the v_csa_type for something.

    I hope that answers your question.
    If this isn't the case, after a complete script that people can run to recreate the problem and test their ideas. Display the results you want (in other words, the contents of the file created).
    Always say what version of Oracle you are using (for example, 11.2.0.3.0).
    See the FAQ forum {message identifier: = 9360002}

  • Analyzes the string and extract the string delimiter

    Hello

    Basic questions.  Is this possible with the scan of regular expression of the string to extract the string that are in the specified delimiters.  Here is an example:

    Name of the \\Name of the folder 1\Name to the folder 2\Name to the folder 3\File

    Chain analysis can produce the following by specifying the regular expression on the right:

    1 folder name

    Name of the folder 2

    Name of the folder 3

    File name

    I tried \\\%s\\%s\\%s\\%s but the %s stops on the first white space.

    Thank you

    Michel

    RavensFan suggested the service appropriate for your condition, but you can also use an alternative, which is "spreadsheet of array of strings.

  • Extracting the data from QVariantMap

    I have the following data :

    QVariant (QVariantMap, QMap ((' data', QVariant (QVariantMap, QMap ((' current_condition', QVariant (QVariantList, ((QVariantMap, QMap... QVariant QVariant (QVariantMap, QMap ((' weather', QVariant (QVariantList, ((QVariantMap, QMap... QVariant QVariant (QVariantMap, QMap ((' weather_desc', QVariant (QVariantList, ((QVariantMap, QMap... QVariant

    m_model-> insert(data.value() .value ("data") .toMap ().value("weather").toList () .at (0) .toMap ());

    Using the above line, I am able to extract relevant data from "current_condition and"weather".

    What should I add to the line above to also extract data from 'weather_desc '?

    Any help would be appreciated. Thank you.

    Thank you! It is much easier to read when formatted, it's the first thing I did.

    { "data":
      {
        "current_condition":
        [
          {
            "cloudcover": "0",
            "humidity": "18",
            "observation_time": "02:36 AM",
            "precipMM": "0.0",
            "pressure": "1007",
            "temp_C": "39",
            "temp_F": "102",
            "visibility": "10",
            "weatherCode": "113",
            "weatherDesc": [ {"value": "Sunny" } ],
            "weatherIconUrl": [ {"value": "http:\/\/www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0001_sunny.png" } ],
            "winddir16Point": "N",
            "winddirDegree": "10",
            "windspeedKmph": "46",
            "windspeedMiles": "29"
          }
        ],
        "request":
        [
          {
            "query": "Melbourne, Australia",
            "type": "City"
          }
        ],
        "weather":
        [
          {
            "date": "2013-01-04",
            "precipMM": "0.0",
            "tempMaxC": "37",
            "tempMaxF": "98",
            "tempMinC": "19",
            "tempMinF": "66",
            "weatherCode": "113",
            "weatherDesc": [ {"value": "Sunny" } ],
            "weatherIconUrl": [ {"value": "http:\/\/www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0001_sunny.png" } ],
            "winddir16Point": "N",
            "winddirDegree": "3",
            "winddirection": "N",
            "windspeedKmph": "21",
            "windspeedMiles": "13"
          }
        ]
      }
    }
    

    To access weatherDesc in usage by time:

    Data.value.value("data").toMap ().value("weather").toList () .at (0) .toMap ().value("weatherDesc").toList () .at (0) .toMap .value ("value") ())

    This will return "Sunny."

    For readability, I suggest if this string to:

    QMap  dataMap = data.value().value("data").toMap();
    
    QList weatherList = dataMap..value("weather").toList();
    
    QVariant firstWeatherEntry = weatherList.at(0);
    
    QMap weatherEntryMap = firstWeatherEntry.toMap();
    
    QList weatherDescList =
    weatherEntryMap.value("weatherDesc").toList();
    
    QVariant firstWeatherDescEntry = weatherDescList.at(0);
    
    QMap weatherDescEntryMap = firstWeatherDescEntry.toMap();
    
    QString value = weatherDescEntryMap.value("value").toString(); // "Sunny"
    

    Also, you can check intermediate outcomes at each stage by calling

    qDebug()< weatherlist="">< "\n";="" and="" so="">

  • How to extract the files from the HARD drive?

    I have a HDD1805 from a broken iPod 80 GB. I was wondering if there was another method I could use to extract the files from the hard drive.

    Hello

    Sorry, but I don t know what you mean exactly.
    Can you please explain exactly what you mean?

    What files you want to extract?

    Good bye

  • DV7 - 7333cl: how to extract usable data from a bad drive using 22 pins adapter usb to SATA on the new HD

    Greetings HP Forum,

    Recently, I replaced a bad hard drive on my laptop. I need now step by step procedure to extract usable data from the wrong drive using 22 pins adapter usb to SATA on the new HD.

    NOTE: I can't not all data that especially if some of the software downloaded on the replaced disk can be altered. Should I first download Internet Antivirus to protect my new hard drive? I'm not an expert, or even close to this when you work on the back of the laptop, so I'll have to step by step how to download and to partition the data recoverable and software, etc..

    Thanks in advance for your help... I greatly appreciate it!

    See you soon!

    Wes

    It is not complex. Attach the drive to the adapter and connect it to any other computer with good antivirus and antispyware installed. I use Malwarebytes and Avast. When you connect the adapter with the drive connected to the usb port, the drive will appear and it will be assigned a letter maybe E:\ or F:\ or something else. Immediately, he analyzes with the antivirus and anti-spyware. Quarantine or delete any virus or malware it finds. Then, it's just a matter of navigate the disk and copy and paste the contents of the host computer in a directory for this purpose. Obviously, you can copy from documents word, photos, music files, but you cannot copy the applications like Microsoft Word, iTunes. Photoshop.  You may need to take ownership of the files on the old hard drive, but Windows will guide you through this. Don't know what else I can answer.

  • Is it possible to extract personal folders from my hard drive and transfer to an external hard drive if Windows does not start?

    Hello, I recently started my Windows XP Dell computer and it should start up normally unless it would run the ChkDsk utility. It would freeze then 68% on stage 1 and goes no further. I called the people of Dell and after trying so many solutions, including safe mode, safe mode with network and CommandPrompt, we ran the diagnosis. The hard drive and memory are fine, no errors. He concluded that it was the operating system and must be restored. However, I have important files, I need to extract from my hard drive and he recommended me an external hard drive. I bought it, but now I'm not sure how to extract my files from my drive hard if Windows can not even boot the desktop computer. Is it possible to extract these files without the use of the desktop computer?

    And you've burned the .iso image, and not as data? If Yes, then you have created a bootable CD. Put it in your optical drive and restart the computer. You may need to change the boot order in your BIOS. With some machines, you can get a temporary startup command menu by pressing a function such as F12 at startup. Other computers require that you enter setup and change the boot order in the optical drive first of all from there. When you start your computer it will be information about which key press to enter the BIOS (Setup) or give you the temporary boot order.

    After you changed the boot order to boot first from the CD and rebooted the computer, Knoppix will boot. Have your external hard drive connected to the computer before you start doing this. After Knoppix is finished booting, you will be in his office. It will be very similar to Windows. There are icons on the desktop for your internal hard drive and the external hard drive. Copy files from the internal to the external drive as you want. Review what I wrote about the use of Knoppix in my previous answer. MS - MVP - Elephant Boy computers - don't panic!

  • Hi, after all stages of extraction of data from oracle to oracle during the execution of command "start extract ext1" his error giving the Manager does not work, can you please help me. Thank you

    Hi, after all stages of extraction of data from oracle to oracle during the execution of command "start extract ext1" his error giving this handler does not run both source and target, can you please help me. Thank you

    Hello

    The setting should be as below, and not only the port number should be...

    PORT 7809

    Kind regards

    Veera

  • How can I extract some pages from my document and save it as another file?

    How can I extract some pages from my document and save it as another file?

    You will need Adobe Acrobat to do that, not Adobe Reader.

  • Another REGEXP question: how to extract multiple values from a string

    Hi, how can I retrieve multiple values to a string with RegExp with Oracle SQL constructs?

    Have looked at the various examples, I cannot understand this.
    the following Sql code
    select
       regexp_substr(sessie."rollen", 'CN=A_role') "A_role"
       from ( 
    select '
    CN=A_role,OU=a_org_unit,OU=another_org_unit,DC=bz,DC=ad,DC=min,DC=local
    CN=Another_role,OU=some_org_unit,DC=bz,DC=ad,DC=min,DC=local
    CN=Users,OU=Dep,DC=bz,DC=ad,DC=min,DC=local
    '   "rollen" from dual
    ) sessie;
    Returns CN = A_role.
    I want him back all of the CN = concatenated values with a semicolon and stripped of the CN = bit.
    So: A_role; Another_role; Users .

    Any help would be much appreciated. Here I use database 11g 11.2.0.2.0.

    Does anyone have an idea how to do this in SQL?

    best regards Mike

    Hello
    If using Oracle 11 g

    with tst
      as (select   'CN=A_role,OU=a_org_unit,OU=another_org_unit,DC=bz,DC=ad,DC=min,DC=local,'
                 ||'CN=Another_role,OU=some_org_unit,DC=bz,DC=ad,DC=min,DC=local,'
                 ||'CN=Users,OU=Dep,DC=bz,DC=ad,DC=min,DC=local' as rollen
            from dual
          )
    select listagg(sub, ',') within group (order by rn) as res
      from (select regexp_substr(rollen, '(CN=)([[:alnum:]_]+)',1,rownum,'i',2) sub, rownum rn
              from tst
           connect by level <=length(rollen)
           )
     where sub is not null       
    
  • Extract the string from the chain - separator = ' | '?

    Hi people!

    I want to know how to extract the a string with delimiter = XE field ' |'.

    For example:
    String = "field1 |" Field2 |... | fieldX |... | filedn | »

    I want to extract fieldX.

    Thanks for your help, regards.

    Use the functions like this substr and instr

    substr(string, instr( string,'|', 1, xth_occurrence)+1, instr( string,'|', 1,xth_occurrence+1) - instr(string,'|', 1, xth_occurrence))
    

    Luca

    Please, mark the reply as useful/correct if it is

    Published by: Luka on January 26, 2010 10:42

    Published by: Luka on January 26, 2010 10:42

  • Extraction of text from the strings in a single cell of a row of cells

    Hello

    Is there an easier way to search a text / word of a string in the row of cells, and where a match is found back a header text - see the example below.

    The left table contains the initial positions of conformity in groups of companies. I would like to complete the table on the right with compliance positions indicated in the table on the left, using the header text (red zone). Example 1 shows that "C company" is not in line with the left table and returns a "Non-compliant" in the relevant cell for company C. Example 2 A company, C and Z are in line with the left table and returns "comply" in the relevant cell in company A, C and Z respectively. It goes the same for the partial.

    The lines must also be aligned as shown in the left column will contain a single reference (not shown in the example).

    My current approach was to simply build a small matrix and use IF (COUNTIF ($E5, "* company A *" "'), 'In line'," "") - this works fine, but is a bit messy - obtained above table, it's really what I like o would reach.

    I also tried to use nested 'FI', 'find', 'Index' and 'Match' combinations, based on a few positions at the beginning, but not could not get the correct syntax.

    Would appreciate other solutions for the construction of the table to the right.

    Thank you in advance...

    Pasel

    This may work for you:

    A2 = if (COUNTA ('Table 1 - company compliance Positions': $A2) > 0, IF (LEN ('Table 1 - company compliance Positions': $A2) −LEN (SUBSTITUTE ('Table 1 - company compliance Positions': $A2, A$ 1, "")) > 0, 'table 1 - company compliance Positions': $A$ 1, ' '), "") & IF (COUNTA ('Table 1 - company compliance Positions': $B2) > 0, IF (LEN ('Table 1 - company compliance Positions': $B2) −LEN (SUBSTITUTE ("table 1 - company compliance Positions")) ((((: $B2, a$ 1, ' ')) > 0, "table 1 - company compliance Positions": $B$ 1, ' '), "") & IF (COUNTA ('Table 1 - company compliance Positions': $C2) > 0, IF (LEN ('Table 1 - company compliance Positions': $C2) −LEN (SUBSTITUTE ('Table 1 - company compliance Positions': $C2, A$ 1, "")) > 0, "table 1 - company compliance Positions": $C$ 1, ""), "")

    It's shorthand dethrone select cell A2, and then type (or copy and paste it here) the formula:

    = IF (COUNTA ('Table 1 - company compliance Positions': $A2) > 0, IF (LEN ('Table 1 - company compliance Positions': $A2) −LEN (SUBSTITUTE ('Table 1 - company compliance Positions': $A2, A$ 1, "")) > 0, 'table 1 - company compliance Positions': $A$ 1, ' '), "") & IF (COUNTA ('Table 1 - company compliance Positions': $B2) > 0, IF (LEN ('Table 1 - company compliance Positions': $B2) −LEN (SUBSTITUTE ("table 1 - company compliance Positions")) ((((: $B2, a$ 1, ' ')) > 0, "table 1 - company compliance Positions": $B$ 1, ' '), "") & IF (COUNTA ('Table 1 - company compliance Positions': $C2) > 0, IF (LEN ('Table 1 - company compliance Positions': $C2) −LEN (SUBSTITUTE ('Table 1 - company compliance Positions': $C2, A$ 1, "")) > 0, "table 1 - company compliance Positions": $C$ 1, ""), "")

    Select cell A2, copy

    Select cells A2 at the end of column F, dough

  • How to extract a string from a TextRange

    Dear Experts,

    How can I retrieve the string "=? UTF - 8? B? LDvGhsLCBGcmybYk? ="between the markers of coding?

    Currently, I am able with the help of code as

    \starttext = activeDoc.Find (startText.beg, findParams);

    to find the exact begins and demand an end to the chain and I created the Base64TextTextRange.

    With the statement activeDoc.TextSelection = Base64Text; I can highlight the text in my document.

    I tried further with

    Base64Item = activeDoc.GetTextForRange(Base64Text,Constants.FTI_String);

    Base64String = Base64Item.toString ();

    But still, I am not able to see the string in the object of the Toolbox browser.

    Note that I do not use the GetText method because the string is only part of the paragraph.

    Thanks for the tips.

    The GetText method, you get an array of text elements. You need to assemble the parts of the string of the text element of individual objects in a single string, then fing encoding markers. Assuming that your Base64Text is a range of valid text, your code should look like this:

    var saTextItems = activeDoc.GetTextForRange (Base64Text, Constants.FTI_String);

    var i;

    var sFullText = ";

    for (i = 0; i< satextitems.length;="" i++="">

    sFullText += saTextItems [i] .sdata;

    var iPos1 = sFullText.indexOf ("=?") + 2 ;    / * assuming =? is the beginning marker and adding 2 to point to the first position behind it * /.

    var iPos2 = sFullText.indexOf ('? ') =", iPos1);   / * Add the start shifted for good measure, but that may not be required here * /.

    var sBase64String = sFullText.substring (iPos1, iPos2);

    Alert (sBase64String);

    I would like to know if it works for you. And mark the answer as correct if it does.

  • How to extract a string from a varchar column value

    Hello
    I have a varchar2 column that got the xml data. I want to extract the value of a tag < test > < / test >

    I can't use EXTRACT because the column is not XMLTYPE.

    Please suggest.

    Insert first only the first two columns:

    INSERT INTO TESTXML (id,name) VALUES(1, 'ABCDEFTEST');
    INSERT INTO TESTXML (id,name) VALUES(2, 'XYZUVWTEST');
    INSERT INTO TESTXML (id,name) VALUES(2, 'XYZUVWTES');
    

    Make this update:

    update testxml set temp=rtrim(ltrim(regexp_substr(name,'(.*?)'),''),'');
    

    Edited by: hartmutm the 01.10.2010 05:13

Maybe you are looking for