odiusfly's Forum Posts

  • I find this: RegexReplace(Text.Text, ".*character.*\r?\n", "m", "")..

    .. But the result is to remove 1 line (the line with the "character" word) only.

    Can't find any regex to remove 1-2 lines above and 1-2 lines below for example.

  • Hey gus! I have an issue.. Is there any fast solution to remove lines of a text?

    Example:

    Hello there!
    This is a simple test.
    I need to remove this character and
    delete this line,
    and this line..
    Without remove this![/code:2tqvadkc]
    
    What i need, is to find the "character" word, and press delete button. After this to remove the lines above and below.. So to have this result:
    [code:2tqvadkc]This is a simple test.
    Without remove this![/code:2tqvadkc]
    
    Can i? Thank you!!!  ; -)
  • Nice work, Thanks! ; -)

  • Thank you!!! ; -)

  • Hey guys! Can someone help me to find the line of a character or number in text?

    I use 2 Text Plugins, 1 Text Box and 1 Button. So, we have:

    Text1 (Original):

    This is a test.
    Today!
    10
    Hello C2!!!
    100[/code:184pmp0f]
    
    [code:184pmp0f]TextBox -> I write "Today!"
    Button -> Click[/code:184pmp0f]
    
    Text2 (Result):
    [code:184pmp0f]1[/code:184pmp0f]
    
    To understand more, the lines of text as i think are:
    "This is a test." is 0
    "Today!" is 1
    "10" is 2
    "Hello C2!!!" is 3
    "100" is 4
    
    What i need to use? A Regex Search? Array? A simple method? Can someone help me? Thanks!
  • Hey guys!

    I use this code:

    System -->  Compare two values
    				int(left(TextBox.Text, 1))
    				?
    				9
    
    TextBox --> Set Text: "9"&TextBox.Text[/code:27rympyd]
    
    And the result of course is to have the number "9" at first all time. What can i do, when i write anything to have the number "9" at the end all time? Thanks!
  • ahr

    Awesome! ; -)

  • Hey guys! I have a project with:

    Textbox

    Button

    Browser

    So my question is: Can i replace the file?

    It's not important what file. For example i press the button and download "save" in my pc a "text1.txt" file.

    So, i change some lines in textbox and i press the button again. I don't want to save as a new file, because i will have files like:

    text1.txt , text1(1).txt, text1(2).txt, text1(3).txt, etc etc

    Need to use other method instead browser plugin? Thanks!

  • korbaach

    Ok Cool!!! Thanks again my friend.. ; -)

  • korbaach

    First of all big thanks for your time! I have a question.. I check your code and xml file also, you change it.. Cool but my question is: If I want to create the cell in excel then to save as xml and use the file as is in construct 2, can i? I ask because if you see xml code from excel is a bit different. Thanks again!

    For example this is the code, when excel save as xml:

      <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="4" x:FullColumns="1"
       x:FullRows="1" ss:DefaultRowHeight="15">
       <Column ss:StyleID="s17" ss:Span="1"/>
       <Row>
        <Cell ss:StyleID="s16"><Data ss:Type="String">Item</Data></Cell>
        <Cell ss:StyleID="s16"><Data ss:Type="String">Count</Data></Cell>
       </Row>
       <Row>
        <Cell><Data ss:Type="String">A</Data></Cell>
        <Cell><Data ss:Type="Number">5</Data></Cell>
       </Row>
       <Row>
        <Cell><Data ss:Type="String">B</Data></Cell>
        <Cell><Data ss:Type="Number">10</Data></Cell>
       </Row>
       <Row>
        <Cell><Data ss:Type="String">C</Data></Cell>
        <Cell><Data ss:Type="Number">20</Data></Cell>
       </Row>
      </Table>[/code:3khwkv5k]
    
    And your code:
    [code:3khwkv5k]<Table>
       <Row>
        <Cell><Data>Item</Data></Cell>
        <Cell><Data>Count</Data></Cell>
       </Row>
       <Row>
        <Cell><Data>A</Data></Cell>
        <Cell><Data>5</Data></Cell>
       </Row>
       <Row>
        <Cell><Data>B</Data></Cell>
        <Cell><Data>10</Data></Cell>
       </Row>
       <Row>
        <Cell><Data>C</Data></Cell>
        <Cell><Data>20</Data></Cell>
       </Row>
    </Table>[/code:3khwkv5k]
  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • clarkkentnicdao Thanks!!! ; -)

  • blackhornet

    Thank you for your answer! I saw this topic before some days, i try something without luck. Maybe i miss something.

    Can you take a minute to check my capx above? We talk for 2 cell only.. Thanks! ; -)

  • Hey guys!

    So, I made an excel with some cell (Item, Count). I export as xml and import in construct.

    Now, I want to search for an exist item each time and when i press a button to give me the result from the cell (i want in future to have more cell).

    I need also when i write a wrong item, to give me error (just a text).

    Thanks very much, I really appreciate!

  • clarkkentnicdao

    Thank you, i fix it! ; -)

  • Anyone can help?