[DiscordArchive] is it in the SpellIcon.dbc in the spell editor dbc folder?
[DiscordArchive] is it in the SpellIcon.dbc in the spell editor dbc folder?
Archived author: Ĝ̷̳r̸̹͊a̷̜̚k̴̞̔ • Posted: 2024-05-22T21:22:37.831000+00:00
Original source
and when i copied it over it asked to repalce and now it works. i swear i did that last night
Archived author: stoneharry • Posted: 2024-05-22T21:24:18.138000+00:00
Original source
`".+[\n\n]+.+\"` https://i.imgur.com/q9fUiFW.pnghttps://i...om/q9fUiFW
Archived author: stoneharry • Posted: 2024-05-22T21:26:25.348000+00:00
Original source
that doesn't capture the `\"` though
Archived author: stoneharry • Posted: 2024-05-22T21:28:20.503000+00:00
Original source
`".+[\n\n]+.+[^\"]+"` fixes it
Archived author: stoneharry • Posted: 2024-05-22T21:29:00.982000+00:00
Original source
`".+([\n\n])+.+[^\"]+"` let's us capture the group to replace
Archived author: stoneharry • Posted: 2024-05-22T21:29:59.522000+00:00
Original source
nah my regex is broken as hell, ignore me
Archived author: Titi • Posted: 2024-05-22T21:31:12.911000+00:00
Original source
I hate regex so much
Archived author: [GLFY] Mitche • Posted: 2024-05-22T21:39:44.342000+00:00
Original source
`"([^"\\]*(\\.|[^"\\\n]*\n)+[^"\\]*)"` ended up being the one :/ i fucking *hate* regex
Archived author: [GLFY] Mitche • Posted: 2024-05-22T21:40:43.092000+00:00
Original source
turned;
```sql
INSERT INTO `spell_dbc` VALUES (408,270,0,12,327696,4456960,0,1024,2056,0,8388608,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,20000,0,0,0,0,101,0,0,13,13,187,3,25,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,173555,0,6,3,6,0,0,0,0,0,0,0,0,0,0,0,0,6,1,6,0,0,0,0,0,0,12,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,499,0,0,"Kidney Shot","","","","","","","","","","","","","","","",16712190,"Rank 1","","","","","","","","","","","","","","","",16712190,"Finishing move that stuns the target. Lasts longer per combo point:
1 point : 1 second
2 points: 2 seconds
3 points: 3 seconds
4 points: 4 seconds
5 points: 5 seconds","","","","","","","","","","","","","","","",16712190,"Stunned.","","","","","","","","","","","","","","","",16712190,0,133,1000,0,8,2097152,0,0,0,2,2,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0);
```
into
```sql
INSERT INTO `spell_dbc` VALUES (408,270,0,12,327696,4456960,0,1024,2056,0,8388608,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,20000,0,0,0,0,101,0,0,13,13,187,3,25,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,173555,0,6,3,6,0,0,0,0,0,0,0,0,0,0,0,0,6,1,6,0,0,0,0,0,0,12,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,679,0,499,0,0,"Kidney Shot","","","","","","","","","","","","","","","",16712190,"Rank 1","","","","","","","","","","","","","","","",16712190,"Finishing move that stuns the target. Lasts longer per combo point: 1 point : 1 second 2 points: 2 seconds 3 points: 3 seconds 4 points: 4 seconds 5 points: 5 seconds","","","","","","","","","","","","","","","",16712190,"Stunned.","","","","","","","","","","","","","","","",16712190,0,133,1000,0,8,2097152,0,0,0,2,2,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0);
```
along with the other 3k instances :p
Archived author: stoneharry • Posted: 2024-05-22T21:42:25.158000+00:00
Original source
https://stackoverflow.com/questions/2902...-into-text isn't new lines just supported?
[Embed: Adding a line break in MySQL INSERT INTO text]
Could someone tell me how to add a new line in a text that I enter in a MySql table?
I tried using the '\n' in the line I entered with INSERT INTO statement but '\n' is shown as it is.
Actually I...
https://stackoverflow.com/questions/2902...-into-text